LicensePlateRegionInput constructor

const LicensePlateRegionInput({
  1. Key? key,
  2. required double size,
  3. bool showFlag = false,
  4. FocusNode? focusNode,
  5. void onSubmitted(
    1. int? value
    )?,
  6. void onChange(
    1. int? value
    )?,
  7. void toForward(
    1. int? value
    )?,
  8. void toBack(
    1. int? value
    )?,
  9. int hintRegion = 125,
  10. Color? hintColor,
  11. Color? textColor,
})

Implementation

const LicensePlateRegionInput({
  Key? key,
  required this.size,
  this.showFlag = false,
  this.focusNode,
  this.onSubmitted,
  this.onChange,
  this.toForward,
  this.toBack,
  this.hintRegion = 125,
  this.hintColor,
  this.textColor,
}) : super(key: key);