redirectUrl property

String? redirectUrl

Implementation

String? get redirectUrl => _redirectUrl;
void redirectUrl=(String? value)

Implementation

set redirectUrl(String? value) {
  this._redirectUrl = value;
  if (value?.isNotEmpty ?? false)
    _redirectUri = Uri.parse(value!);
  else
    _redirectUri = null;
}