GoogleCloudContentwarehouseV1TimestampValue.fromJson constructor

GoogleCloudContentwarehouseV1TimestampValue.fromJson(
  1. Map json_
)

Implementation

GoogleCloudContentwarehouseV1TimestampValue.fromJson(core.Map json_)
    : this(
        textValue: json_.containsKey('textValue')
            ? json_['textValue'] as core.String
            : null,
        timestampValue: json_.containsKey('timestampValue')
            ? json_['timestampValue'] as core.String
            : null,
      );