asProxyUri property

dynamic Function(Uri) get asProxyUri

Implementation

static Function(Uri) get asProxyUri {
  if (_asProxyUri == null) {
    throw ArgumentError("asProxyUri must be set!");
  }

  return _asProxyUri!;
}
set asProxyUri (dynamic value)

Implementation

static set asProxyUri(var value) => _asProxyUri = value;