AnthosCluster.fromJson constructor

AnthosCluster.fromJson(
  1. Map json_
)

Implementation

AnthosCluster.fromJson(core.Map json_)
    : this(
        membership: json_.containsKey('membership')
            ? json_['membership'] as core.String
            : null,
      );