removeEtag method

bool removeEtag(
  1. CoapOption option
)
inherited

Remove an ETag, true indicates success

Implementation

bool removeEtag(final CoapOption option) {
  if (option.type != OptionType.eTag) {
    throw ArgumentError.notNull('Message::removeETag, option is not an etag');
  }
  return removeOption(option);
}