TGetTvcAppDeploymentsResponse.fromJson constructor

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

Implementation

factory TGetTvcAppDeploymentsResponse.fromJson(Map<String, dynamic> json) {
  final _tvcDeployments = (json['tvcDeployments'] as List).map((e) => v1TvcDeployment.fromJson(e as Map<String, dynamic>)).toList();
  return TGetTvcAppDeploymentsResponse(
    tvcDeployments: _tvcDeployments,
  );
}