StandartLicensePlateInput constructor
StandartLicensePlateInput({
- Key? key,
- required double size,
- StandartLicensePlate? hintPlate,
- bool showFlag = true,
- dynamic onSubmitted()?,
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,
);