Uint8 constructor

Uint8(
  1. int value
)

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

Implementation

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