urlScheme property

String? urlScheme

Retrieves the custom url scheme

Implementation

static String? get urlScheme {
  return instance._urlScheme;
}
void urlScheme=(String? value)

Sets the custom url scheme

Implementation

static set urlScheme(String? value) {
  if (value == instance._urlScheme) {
    return;
  }
  instance._urlScheme = value;
  instance.markNeedsSettings();
}