Uint16 constructor

Uint16(
  1. int value
)

Wraps a value that is otherwise a valid 16-bit unsigned integer.

Implementation

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