V2TimFileElem.fromJson constructor
V2TimFileElem.fromJson(
- Map json
Implementation
V2TimFileElem.fromJson(Map json) {
json = Utils.formatJson(json);
path = json['path'];
fileName = json['fileName'];
UUID = json['UUID'];
url = json['url'];
localUrl = json['localUrl'];
fileSize = json['fileSize'];
if (json['nextElem'] != null) {
nextElem = Utils.formatJson(json['nextElem']);
}
}