TGetTvcAppsResponse.fromJson constructor

TGetTvcAppsResponse.fromJson(
  1. Map<String, dynamic> json
)

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,
  );
}