userApiKey property

String get userApiKey

Implementation

String get userApiKey => _userApiKey;
set userApiKey (String value)

Sets the user's API key and notifies listeners of the change.

Implementation

set userApiKey(String value) {
  _userApiKey = value;
  notifyListeners();
}