Int4 constructor

Int4(
  1. int value
)

Wraps a value that is otherwise a valid 4-bit signed integer.

Implementation

Int4(int value)
    : super.checked(
        value: value,
        signed: _signed,
        size: _size,
      );