ExportSBOMRequest.fromJson constructor

ExportSBOMRequest.fromJson(
  1. Map json_
)

Implementation

ExportSBOMRequest.fromJson(core.Map json_)
    : this(
        cloudStorageLocation: json_.containsKey('cloudStorageLocation')
            ? CloudStorageLocation.fromJson(json_['cloudStorageLocation']
                as core.Map<core.String, core.dynamic>)
            : null,
      );