GetDeploymentResourcePoolRequest.fromJson constructor
GetDeploymentResourcePoolRequest.fromJson(
- Object? j
Implementation
factory GetDeploymentResourcePoolRequest.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return GetDeploymentResourcePoolRequest(
name: switch (json['name']) {
null => '',
Object $1 => decodeString($1),
},
);
}