TGetTvcAppsResponse.fromJson constructor
Implementation
factory TGetTvcAppsResponse.fromJson(Map<String, dynamic> json) {
final _tvcApps = (json['tvcApps'] as List).map((e) => v1TvcApp.fromJson(e as Map<String, dynamic>)).toList();
return TGetTvcAppsResponse(
tvcApps: _tvcApps,
);
}