FilesList.fromJson constructor

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

Creates a FilesList instance from a JSON representation.

Implementation

FilesList.fromJson(Map<String, dynamic> json) {
  value = StorageFile.listFromJson(json['value']);
}