remove method

  1. @override
Future<void> remove()

Removes the authentication key.

Implementation

@override
Future<void> remove() async {
  _authenticationKey = null;

  await _storage.remove('${_prefsKey}_$runMode');
}