blob - a blob of the file to be loaded
blob
@override Future<ImageElement?> fromBlob(Blob blob) async{ if(kIsWeb){ return await processImageBlob(blob,flipY); } return await fromBytes(blob.data); }