clear method

Future clear()

Clears all data from the auth storage.

This removes all stored tokens. Use unAuthorize instead if you also want to remove the Authorization header.

Implementation

Future clear() async {
  await _storage.clear();
}