error: The argument type ‘File?’ can’t be assigned to the parameter type ‘File’. (argument_type_not_assignable at [aplikasi_scan_plat_nomor] libscreenhome.dart:82)
File? pickedImage;
image: FileImage(pickedImage),
error: The argument type ‘File?’ can’t be assigned to the parameter type ‘File’. (argument_type_not_assignable at [aplikasi_scan_plat_nomor] libscreenhome.dart:82)
File? pickedImage;
image: FileImage(pickedImage),
2
Answers
Your dataType is nullable which is ok.
But image doesnt accept null data.
You can do a null check first.
Adding null-assert(!) is risky without checking null first.
The proper way would be to do a null check, but you can also assign an initial value your
pickedImage
.