StorageFile.fromJson constructor
Constructs a StorageFile from the provided json
.
Implementation
factory StorageFile.fromJson(Map<String, dynamic> json) =>
switch (json['runtimeType']) {
'PlainFile' => PlainFile.fromJson(json),
'ImageFile' => ImageFile.fromJson(json),
_ => throw UnimplementedError(json['runtimeType']),
};