GoogleCloudMlV1Scheduling.fromJson constructor

GoogleCloudMlV1Scheduling.fromJson(
  1. Map json_
)

Implementation

GoogleCloudMlV1Scheduling.fromJson(core.Map json_)
    : this(
        maxRunningTime: json_.containsKey('maxRunningTime')
            ? json_['maxRunningTime'] as core.String
            : null,
        maxWaitTime: json_.containsKey('maxWaitTime')
            ? json_['maxWaitTime'] as core.String
            : null,
        priority: json_.containsKey('priority')
            ? json_['priority'] as core.int
            : null,
      );