sessionRemove method

Future<bool> sessionRemove(
  1. String key
)

Removes a value from the sessionPreferences box.

Implementation

Future<bool> sessionRemove(String key) async {
  box!.delete(key.toString());
  return true;
}