token property

Uint8Buffer? token
inherited

The 0-8 byte token.

Implementation

Uint8Buffer? get token => _token;
void token=(Uint8Buffer? value)
inherited

Implementation

set token(final Uint8Buffer? value) {
  const maxValue = (1 << 16) - 270;
  if (value != null && value.length > maxValue) {
    throw ArgumentError.value(
      value,
      'Message::token',
      'Token length must be between 0 and $maxValue inclusive.',
    );
  }
  _token = value;
}