toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clusterRole = this.clusterRole;
  final membership = this.membership;
  final primaryCluster = this.primaryCluster;
  final secondaryClusters = this.secondaryClusters;
  final updateTime = this.updateTime;
  return {
    'clusterRole': ?clusterRole,
    'membership': ?membership,
    'primaryCluster': ?primaryCluster,
    'secondaryClusters': ?secondaryClusters,
    'updateTime': ?updateTime,
  };
}