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