userSuccessUrl property

String? get userSuccessUrl

Implementation

String? get userSuccessUrl => _userSuccessUrl;
set userSuccessUrl (String? value)

Sets the success URL for user operations and notifies listeners of the change.

Implementation

set userSuccessUrl(String? value) {
  _userSuccessUrl = value;
  notifyListeners();
}