clean method

Future<void> clean()

Implementation

Future<void> clean() async {
  final box = await _box;
  return box?.deleteAll(box.keys);
}