deleteAt abstract method

Future<void> deleteAt(
  1. int index, {
  2. bool notify = true,
})

Deletes the n-th key from the box.

If it does not exist, nothing happens.

Implementation

Future<void> deleteAt(
  int index, {
  bool notify = true,
});