StandartLicensePlateInput constructor

StandartLicensePlateInput({
  1. Key? key,
  2. required double size,
  3. StandartLicensePlate? hintPlate,
  4. bool showFlag = true,
  5. dynamic onSubmitted(
    1. StandartLicensePlate?,
    2. LicensePlateInputError?
    )?,
})

Implementation

StandartLicensePlateInput({
  Key? key,
  required double size,
  StandartLicensePlate? hintPlate,
  bool showFlag = true,
  Function(StandartLicensePlate?, LicensePlateInputError?)? onSubmitted,
}) : super(
        key: key,
        size: size,
        hintPlate: hintPlate ?? StandartLicensePlate.from("B257YK27"),
        showFlag: showFlag,
        onSubmitted: onSubmitted,
      );