Removes the file located at path.
path
Future<void> removeFile(String path) async { final file = instance.ref().child(path); await file.delete().catchError((_) {}); }