SavedCardsScreen constructor
const
SavedCardsScreen({
- Key? key,
- required SavedCardsModel saved,
- required String apiKey,
- required int amount,
- required String returnLink,
- required bool testMode,
- required Map<
String, dynamic> metadata, - void onError(
- Map data
- required void onCancelledCard(),
- required void onPaidCard(),
- required void onCreateCard(
- Create data
- String? appBarTitle,
- Color? bgColor,
- Color? cardColor,
- Color? textCardColor,
Implementation
const SavedCardsScreen({
super.key,
required this.saved,
required this.apiKey,
required this.amount,
required this.returnLink,
required this.testMode,
required this.metadata,
this.onError,
required this.onCancelledCard,
required this.onPaidCard,
required this.onCreateCard,
this.appBarTitle,
this.bgColor,
this.cardColor,
this.textCardColor,
});