toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final backup = this.backup;
final backupLocation = this.backupLocation;
final requestId = this.requestId;
final restoreType = this.restoreType;
return {
'backup': ?backup,
'backupLocation': ?backupLocation,
'requestId': ?requestId,
'restoreType': ?restoreType,
};
}