GetHealthOperationMetadata.fromJson constructor

GetHealthOperationMetadata.fromJson(
  1. 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),
    },
  );
}