TGetTvcAppDeploymentsBody.fromJson constructor

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

Implementation

factory TGetTvcAppDeploymentsBody.fromJson(Map<String, dynamic> json) {
  final _organizationId = json['organizationId'] as String?;
  final _appId = json['appId'] as String;
  return TGetTvcAppDeploymentsBody(
    organizationId: _organizationId,
    appId: _appId,
  );
}