toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cluster = this.cluster;
  final clusterUid = this.clusterUid;
  final createTime = this.createTime;
  final kmsKey = this.kmsKey;
  final lastBackupTime = this.lastBackupTime;
  final name = this.name;
  final totalBackupCount = this.totalBackupCount;
  final totalBackupSizeBytes = this.totalBackupSizeBytes;
  final uid = this.uid;
  return {
    'cluster': ?cluster,
    'clusterUid': ?clusterUid,
    'createTime': ?createTime,
    'kmsKey': ?kmsKey,
    'lastBackupTime': ?lastBackupTime,
    'name': ?name,
    'totalBackupCount': ?totalBackupCount,
    'totalBackupSizeBytes': ?totalBackupSizeBytes,
    'uid': ?uid,
  };
}