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