remove method

Future<void> remove(
  1. String path
)

Implementation

Future<void> remove(String path) async {
  final int index = _box!.values.toList().indexOf(path);
  await _box!.deleteAt(index);
}