Skip to content

Commit

Permalink
📝 remove doc comments for setter methods
Browse files Browse the repository at this point in the history
  • Loading branch information
fa-fifi committed Dec 4, 2023
1 parent 392a958 commit 900463a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/src/config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,28 +46,24 @@ class KeycloakConfig {
/// The callback URI after the user has been successfully authorized and granted an access token.
String get redirectUri => '$_bundleIdentifier://login-callback';

/// The application unique identifier.
set bundleIdentifier(String? value) {
if (value == null) return;
_bundleIdentifier = value;
_secureStorage.write(key: _bundleIdentifierKey, value: value);
}

/// The alphanumeric ID string that is used in OIDC requests and in the Keycloak database to identify the client.
set clientId(String? value) {
if (value == null) return;
_clientId = value;
_secureStorage.write(key: _clientIdKey, value: value);
}

/// The fixed base URL for frontend requests.
set frontendUrl(String? value) {
if (value == null) return;
_frontendUrl = value;
_secureStorage.write(key: _frontendUrlKey, value: value);
}

/// The realm name.
set realm(String? value) {
if (value == null) return;
_realm = value;
Expand Down

0 comments on commit 900463a

Please sign in to comment.