GoogleCloudMlV1ListOptimalTrialsResponse.fromJson constructor

GoogleCloudMlV1ListOptimalTrialsResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudMlV1ListOptimalTrialsResponse.fromJson(core.Map json_)
    : this(
        trials: (json_['trials'] as core.List?)
            ?.map((value) => GoogleCloudMlV1Trial.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );