V2TimFileElem.fromJson constructor
Implementation
V2TimFileElem.fromJson(Map<String, dynamic> json) {
path = json['path'];
fileName = json['fileName'];
UUID = json['UUID'];
url = json['url'];
localUrl = json['localUrl'];
fileSize = json['fileSize'];
if (json['nextElem'] != null) {
nextElem = Map<String, dynamic>.from(json['nextElem']);
}
}