GoogleCloudMlV1AcceleratorConfig.fromJson constructor

GoogleCloudMlV1AcceleratorConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudMlV1AcceleratorConfig.fromJson(core.Map json_)
    : this(
        count:
            json_.containsKey('count') ? json_['count'] as core.String : null,
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
      );