toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authority = this.authority;
  final clusterTier = this.clusterTier;
  final createTime = this.createTime;
  final deleteTime = this.deleteTime;
  final description = this.description;
  final endpoint = this.endpoint;
  final externalId = this.externalId;
  final labels = this.labels;
  final lastConnectionTime = this.lastConnectionTime;
  final membershipType = this.membershipType;
  final monitoringConfig = this.monitoringConfig;
  final name = this.name;
  final state = this.state;
  final uniqueId = this.uniqueId;
  final updateTime = this.updateTime;
  return {
    'authority': ?authority,
    'clusterTier': ?clusterTier,
    'createTime': ?createTime,
    'deleteTime': ?deleteTime,
    'description': ?description,
    'endpoint': ?endpoint,
    'externalId': ?externalId,
    'labels': ?labels,
    'lastConnectionTime': ?lastConnectionTime,
    'membershipType': ?membershipType,
    'monitoringConfig': ?monitoringConfig,
    'name': ?name,
    'state': ?state,
    'uniqueId': ?uniqueId,
    'updateTime': ?updateTime,
  };
}