void readAsText(Blob blob, [String? label]) { _readyState = LOADING; blob.internalBytes().then((bytes) { _result = utf8.decode(bytes, allowMalformed: true); _readyState = DONE; }); }