deleteSync method - FileSystemEntity class - dart:io library (original) (raw)
void deleteSync({
- bool recursive = false, })
Synchronously deletes this FileSystemEntity.
The exact details vary according to the FileSystemEntity:
Implementation
void deleteSync({bool recursive = false}) =>
_deleteSync(recursive: recursive);