Uint16.from constructor

Uint16.from(
  1. int value
)

Dynamically instantiates a Uint16 value mapped sequentially into memory.

Implementation

Uint16.from(int value) : _data = Uint16List(1)..[0] = value;