menu
flutterstart package
documentation
components/flutterstart_apply/src/file_system.dart
ApplyFileSystem
deleteFile method
deleteFile method
dark_mode
light_mode
deleteFile
method
void
deleteFile
(
String
path
)
Implementation
void deleteFile(String path) { final file = File(path); if (file.existsSync()) file.deleteSync(); }
flutterstart package
documentation
components/flutterstart_apply/src/file_system
ApplyFileSystem
deleteFile method
ApplyFileSystem class