maxAge property

int maxAge
inherited

The max-age of this CoAP message.

Implementation

int get maxAge {
  final opt = getFirstOption<MaxAgeOption>();
  return opt?.value ?? CoapConstants.defaultMaxAge;
}
void maxAge=(int value)
inherited

Implementation

set maxAge(final int value) => setOption(MaxAgeOption(value));