GoogleCloudMlV1RouteMap.fromJson constructor

GoogleCloudMlV1RouteMap.fromJson(
  1. Map json_
)

Implementation

GoogleCloudMlV1RouteMap.fromJson(core.Map json_)
    : this(
        health: json_.containsKey('health')
            ? json_['health'] as core.String
            : null,
        predict: json_.containsKey('predict')
            ? json_['predict'] as core.String
            : null,
      );