toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final backupId = this.backupId;
  final consistencyTime = this.consistencyTime;
  final description = this.description;
  final recoveryRangeEndTime = this.recoveryRangeEndTime;
  final recoveryRangeStartTime = this.recoveryRangeStartTime;
  final requestId = this.requestId;
  final retentionDuration = this.retentionDuration;
  return {
    'backupId': ?backupId,
    'consistencyTime': ?consistencyTime,
    'description': ?description,
    'recoveryRangeEndTime': ?recoveryRangeEndTime,
    'recoveryRangeStartTime': ?recoveryRangeStartTime,
    'requestId': ?requestId,
    'retentionDuration': ?retentionDuration,
  };
}