clearBackups method
Implementation
Future<void> clearBackups() async {
if (await _backupRoot.exists()) {
await _backupRoot.delete(recursive: true);
}
}
Future<void> clearBackups() async {
if (await _backupRoot.exists()) {
await _backupRoot.delete(recursive: true);
}
}