toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clusterConfig = this.clusterConfig;
  final defaultStorageType = this.defaultStorageType;
  final encryptionConfig = this.encryptionConfig;
  final location = this.location;
  final name = this.name;
  final nodeScalingFactor = this.nodeScalingFactor;
  final serveNodes = this.serveNodes;
  final state = this.state;
  return {
    'clusterConfig': ?clusterConfig,
    'defaultStorageType': ?defaultStorageType,
    'encryptionConfig': ?encryptionConfig,
    'location': ?location,
    'name': ?name,
    'nodeScalingFactor': ?nodeScalingFactor,
    'serveNodes': ?serveNodes,
    'state': ?state,
  };
}