CardNumberFormField constructor

const CardNumberFormField({
  1. Key? key,
  2. String? initialValue,
  3. required void onSaved(
    1. String?
    ),
  4. required String? validator(
    1. String?
    ),
  5. void onChanged(
    1. String
    )?,
  6. InputDecoration decoration = defaultDecoration,
  7. TextStyle textStyle = defaultTextStyle,
  8. TextEditingController? textEditingController,
})

Implementation

const CardNumberFormField(
    {Key? key,
    this.initialValue,
    required this.onSaved,
    required this.validator,
    this.onChanged,
    this.decoration = defaultDecoration,
    this.textStyle = defaultTextStyle,
    this.textEditingController})
    : super(key: key);