Nush
Nush

Reputation: 55

Undefined class 'StorageUploadTask' FLUTTER

The screenshot

I've been trying to figure out, why it isn't recognizing StorageUploadTask, with no luck. I have installed the firesbase storage and core plugin.

Upvotes: 4

Views: 1997

Answers (1)

Victor Eronmosele
Victor Eronmosele

Reputation: 7706

Use UploadTask. The API has changed.

So instead of:

StorageUploadTask _task

you now have:

UploadTask _task

Upvotes: 8

Related Questions