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