StorageFile.fromJson constructor

StorageFile.fromJson(
  1. Map<String, dynamic> json
)

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']),
    };