V2TimImage.fromJson constructor
V2TimImage.fromJson(
- Map json
Implementation
V2TimImage.fromJson(Map json) {
json = Utils.formatJson(json);
uuid = json['UUID'] ?? json['uuid'];
type = json['type'];
size = json['size'];
width = json['width'];
height = json['height'];
url = json['url'];
localUrl = json['localUrl'];
}