GetVersionOperationMetadata.fromJson constructor

GetVersionOperationMetadata.fromJson(
  1. Object? j
)

Implementation

factory GetVersionOperationMetadata.fromJson(Object? j) {
  final json = j as Map<String, Object?>;
  return GetVersionOperationMetadata(
    inlineSbomInfo: switch (json['inlineSbomInfo']) {
      null => null,
      Object $1 => GetVersionOperationMetadataSbomInfo.fromJson($1),
    },
  );
}