Uint8 constructor

Uint8(
  1. int value
)

Implementation

Uint8(int value)
    : super(
          numberOfBytesRequired: 1,
          constructorCallback: Uint8.new,
          value: value);