GoogleCloudAiplatformV1MemoryMetadataValue.fromJson constructor

GoogleCloudAiplatformV1MemoryMetadataValue.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1MemoryMetadataValue.fromJson(core.Map json_)
  : this(
      boolValue: json_['boolValue'] as core.bool?,
      doubleValue: (json_['doubleValue'] as core.num?)?.toDouble(),
      stringValue: json_['stringValue'] as core.String?,
      timestampValue: json_['timestampValue'] as core.String?,
    );