GoogleCloudHealthcareV1DicomGcsDestination.fromJson constructor

GoogleCloudHealthcareV1DicomGcsDestination.fromJson(
  1. Map json_
)

Implementation

GoogleCloudHealthcareV1DicomGcsDestination.fromJson(core.Map json_)
    : this(
        mimeType: json_.containsKey('mimeType')
            ? json_['mimeType'] as core.String
            : null,
        uriPrefix: json_.containsKey('uriPrefix')
            ? json_['uriPrefix'] as core.String
            : null,
      );