urlScheme property
String?
get
urlScheme
Retrieves the custom url scheme
Implementation
static String? get urlScheme {
return instance._urlScheme;
}
set
urlScheme
(String? value)
Sets the custom url scheme
Implementation
static set urlScheme(String? value) {
if (value == instance._urlScheme) {
return;
}
instance._urlScheme = value;
instance.markNeedsSettings();
}