addOptions method

void addOptions(
  1. Iterable<Option<Object?>> options
)
inherited

Adds options to the list of options of this CoAP message.

Implementation

void addOptions(final Iterable<Option<Object?>> options) =>
    options.forEach(addOption);