ListTensorFlowVersionsResponse.fromJson constructor

ListTensorFlowVersionsResponse.fromJson(
  1. Map json_
)

Implementation

ListTensorFlowVersionsResponse.fromJson(core.Map json_)
    : this(
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
        tensorflowVersions: json_.containsKey('tensorflowVersions')
            ? (json_['tensorflowVersions'] as core.List)
                .map((value) => TensorFlowVersion.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        unreachable: json_.containsKey('unreachable')
            ? (json_['unreachable'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );