static MediaData fromJson(Map json) { String? type = json['type'] as String?; if (type == "IMAGE") { return ImageData.fromJson(json); } else { return VideoData.fromJson(json); } }