GoogleCloudDatacatalogV1SystemTimestamps.fromJson constructor

GoogleCloudDatacatalogV1SystemTimestamps.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDatacatalogV1SystemTimestamps.fromJson(core.Map json_)
    : this(
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        expireTime: json_.containsKey('expireTime')
            ? json_['expireTime'] as core.String
            : null,
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
      );