TGetTvcDeploymentResponse.fromJson constructor

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

Implementation

factory TGetTvcDeploymentResponse.fromJson(Map<String, dynamic> json) {
  final _tvcDeployment = v1TvcDeployment.fromJson(json['tvcDeployment'] as Map<String, dynamic>);
  return TGetTvcDeploymentResponse(
    tvcDeployment: _tvcDeployment,
  );
}