TGetTvcAppBody.fromJson constructor

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

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