CardForm constructor

const CardForm({
  1. Key? key,
  2. void onSubmitted(
    1. Result<Map<String, dynamic>> result
    )?,
  3. required PaymentService paymentService,
  4. Locale locale = const Locale('es'),
  5. ThemeData? themeData,
})

Implementation

const CardForm(
    {super.key,
    this.onSubmitted,
    required this.paymentService,
    this.locale = const Locale('es'),
    this.themeData});