Uint32.from constructor

Uint32.from(
  1. int value
)

Dynamically instantiates a Uint32 value mapped sequentially into memory.

Implementation

Uint32.from(int value) : _data = Uint32List(1)..[0] = value;