deleteFile method
Deletes a file at the specified path
filePath - Path of the file to delete
Implementation
@override
Future<void> deleteFile(String filePath) async {
  final file = _fileFor(filePath);
  if (await file.exists()) {
    await file.delete();
  }
}