delete method
Public method or function.
Implementation
@override
/// Public method or function.
Future<void> delete(String path) async {
if (isDirectory(path)) {
await Directory(path).delete(recursive: true);
} else {
await File(path).delete();
}
}