toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clusters = this.clusters;
  final createTime = this.createTime;
  final description = this.description;
  final etag = this.etag;
  final name = this.name;
  final nfsDatastore = this.nfsDatastore;
  final state = this.state;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'clusters': ?clusters,
    'createTime': ?createTime,
    'description': ?description,
    'etag': ?etag,
    'name': ?name,
    'nfsDatastore': ?nfsDatastore,
    'state': ?state,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}