GoogleCloudDatacatalogV1GcsFileSpec.fromJson constructor

GoogleCloudDatacatalogV1GcsFileSpec.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDatacatalogV1GcsFileSpec.fromJson(core.Map json_)
  : this(
      filePath: json_['filePath'] as core.String?,
      gcsTimestamps: json_.containsKey('gcsTimestamps')
          ? GoogleCloudDatacatalogV1SystemTimestamps.fromJson(
              json_['gcsTimestamps'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      sizeBytes: json_['sizeBytes'] as core.String?,
    );