decode static method
- Unpacker u
Implementation
static NatBehavior? decode(Unpacker u) {
final n = u.unpackInt();
return n != null ? fromInt(n) : null;
}
static NatBehavior? decode(Unpacker u) {
final n = u.unpackInt();
return n != null ? fromInt(n) : null;
}