FileElem.fromJson constructor

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

Implementation

FileElem.fromJson(Map<String, dynamic> json) {
  filePath = json['filePath'];
  uuid = json['uuid'];
  sourceUrl = json['sourceUrl'];
  fileName = json['fileName'];
  fileSize = json['fileSize'];
}