Uint8.from constructor

Uint8.from(
  1. int value
)

Dynamically instantiates a Uint8 value mapped sequentially into memory.

Implementation

Uint8.from(int value) : _data = Uint8List(1)..[0] = value;