[In MDN, FileReader has a event called onLoad](https://developer.mozilla.org/en-US/docs/Web/API/FileReader/load_event), but unfortunately in current main b55f3430379b5c3b0d01060a1b0a3a257c4382c5, there is no such event to listen to. Current workaround would need to write a custom Extension Method, mimic the the `onLoadEnd` event which is currently inside main ```dart extension on FileReader { Stream<ProgressEvent> get onLoad => EventStreamProviders.loadEvent.forTarget(this); } ```