toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final backupType = this.backupType;
  final encryptionInfo = this.encryptionInfo;
  final endTime = this.endTime;
  final expireTime = this.expireTime;
  final hotToStandardTime = this.hotToStandardTime;
  final name = this.name;
  final sizeBytes = this.sizeBytes;
  final sourceBackup = this.sourceBackup;
  final sourceTable = this.sourceTable;
  final startTime = this.startTime;
  final state = this.state;
  return {
    'backupType': ?backupType,
    'encryptionInfo': ?encryptionInfo,
    'endTime': ?endTime,
    'expireTime': ?expireTime,
    'hotToStandardTime': ?hotToStandardTime,
    'name': ?name,
    'sizeBytes': ?sizeBytes,
    'sourceBackup': ?sourceBackup,
    'sourceTable': ?sourceTable,
    'startTime': ?startTime,
    'state': ?state,
  };
}