TGetTvcAppBody.fromJson constructor
Implementation
factory TGetTvcAppBody.fromJson(Map<String, dynamic> json) {
final _organizationId = json['organizationId'] as String?;
final _tvcAppId = json['tvcAppId'] as String;
return TGetTvcAppBody(
organizationId: _organizationId,
tvcAppId: _tvcAppId,
);
}