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