TGetTvcAppResponse.fromJson constructor
Implementation
factory TGetTvcAppResponse.fromJson(Map<String, dynamic> json) {
final _tvcApp = v1TvcApp.fromJson(json['tvcApp'] as Map<String, dynamic>);
return TGetTvcAppResponse(
tvcApp: _tvcApp,
);
}