RouteLicensePlateInput constructor
RouteLicensePlateInput({
- Key? key,
- required double size,
- RouteLicensePlate? hintPlate,
- dynamic onSubmitted()?,
Implementation
RouteLicensePlateInput({
Key? key,
required double size,
RouteLicensePlate? hintPlate,
Function(RouteLicensePlate?, LicensePlateInputError?)? onSubmitted,
}) : super(
key: key,
size: size,
hintPlate: hintPlate ?? RouteLicensePlate.from("TA777125"),
showFlag: false,
onSubmitted: onSubmitted,
);