cleanDirectory method

Future<void> cleanDirectory()

Implementation

Future<void> cleanDirectory() async {
  this.deleteSync(recursive: true);
  this.createSync(recursive: true);
}