toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attachedClusters = this.attachedClusters;
  final createTime = this.createTime;
  final name = this.name;
  final revisionNumber = this.revisionNumber;
  final snapshot = this.snapshot;
  return {
    'attachedClusters': ?attachedClusters,
    'createTime': ?createTime,
    'name': ?name,
    'revisionNumber': ?revisionNumber,
    'snapshot': ?snapshot,
  };
}