close abstract method

Future<void> close({
  1. bool force = false,
})

Frees up any resources associated with this storage instance.

After calling this method, the storage instance must no longer be used.

If force is true, any pending requests will be cancelled and complete with an error. Defaults to false.

Implementation

Future<void> close({bool force = false});