proxyScheme property

String? proxyScheme
inherited

Proxy scheme

Implementation

String? get proxyScheme {
  final opt = getFirstOption(OptionType.proxyScheme);
  return opt?.toString();
}
void proxyScheme=(String? value)
inherited

Implementation

set proxyScheme(final String? value) {
  if (value == null) {
    removeOptions(OptionType.proxyScheme);
  } else {
    setOption(CoapOption.createString(OptionType.proxyScheme, value));
  }
}