-2

error: Non-nullable instance field 'pickedImage' must be initialized.

class _HomeState extends State<Home> {
  File pickedImage;
...
Alex Sunder Singh
  • 2,378
  • 1
  • 7
  • 17

1 Answers1

0

You should use nullable operator ? here.

Your code should be as following..

class _HomeState extends State<Home> {
  File? pickedImage;
...
Alex Sunder Singh
  • 2,378
  • 1
  • 7
  • 17