StopClusterRequest.fromJson constructor

StopClusterRequest.fromJson(
  1. Map json_
)

Implementation

StopClusterRequest.fromJson(core.Map json_)
    : this(
        clusterUuid: json_.containsKey('clusterUuid')
            ? json_['clusterUuid'] as core.String
            : null,
        requestId: json_.containsKey('requestId')
            ? json_['requestId'] as core.String
            : null,
      );