TGetTvcAppResponse.fromJson constructor

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

Implementation

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