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