toJson method

Map<String, dynamic> toJson()

Returns a Map representing this StorageFile.

Implementation

Map<String, dynamic> toJson() => switch (runtimeType) {
  const (PlainFile) => (this as PlainFile).toJson(),
  const (ImageFile) => (this as ImageFile).toJson(),
  _ => throw UnimplementedError(runtimeType.toString()),
};