get method

Retrieves an authentication key.

Implementation

@override
Future<String?> get() async {
  if (!_initialized) {
    _authenticationKey = await _storage.getString('${_prefsKey}_$runMode');
    _initialized = true;
  }

  return _authenticationKey;
}