v1GetTvcAppDeploymentsResponse.fromJson constructor

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

Implementation

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