toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final backupFilePattern = this.backupFilePattern;
  final dagConfig = this.dagConfig;
  final databaseBackups = this.databaseBackups;
  final promoteWhenReady = this.promoteWhenReady;
  final useDiffBackup = this.useDiffBackup;
  return {
    'backupFilePattern': ?backupFilePattern,
    'dagConfig': ?dagConfig,
    'databaseBackups': ?databaseBackups,
    'promoteWhenReady': ?promoteWhenReady,
    'useDiffBackup': ?useDiffBackup,
  };
}