BankCardItem constructor

BankCardItem({
  1. Key? key,
  2. required String imageUrl,
  3. required String bankName,
  4. TextStyle textStyle = const TextStyle(fontFamily: 'Roboto'),
  5. double bankLogoWidthHeight = 38,
  6. BoxDecoration boxDecoration = const BoxDecoration(),
  7. required bool isMobile,
})

Implementation

BankCardItem(
    {super.key,
    required this.imageUrl,
    required this.bankName,
    this.textStyle = const TextStyle(fontFamily: 'Roboto'),
    this.bankLogoWidthHeight = 38,
    this.boxDecoration = const BoxDecoration(),
    required this.isMobile});