0

I am using flutter_stripe lib for integrating the Stripe payment method but it gives an error when I use Card widget with this lib.

My error is given as:

"The name 'Card' is defined in the libraries 'package:flutter/src/material/card.dart (via package:flutter/material.dart)' and 'package:stripe_platform_interface/src/models/payment_methods.dart'.\nTry using 'as prefix' for one of the import directives, or hiding the name from all but one of the imports.",

bad_coder
  • 11,289
  • 20
  • 44
  • 72
Muhammad Umair Saqib
  • 1,287
  • 1
  • 9
  • 20

1 Answers1

3

I found its answer by modifying the flutter_stripe import as import 'package:flutter_stripe/flutter_stripe.dart' hide Card;

Muhammad Umair Saqib
  • 1,287
  • 1
  • 9
  • 20