delete static method

Future<void> delete(
  1. String key
)

Implementation

static Future<void> delete(String key) {
  assert(_box != null, 'call "prelude" first');
  return _box!.delete(key);
}