decode static method

MessageId? decode(
  1. Unpacker u
)

Implementation

static MessageId? decode(Unpacker u) {
  final value = u.unpackInt();
  return value != null ? MessageId(value) : null;
}