IntKind.uint32 constructor

const IntKind.uint32({
  1. int min = 0,
  2. int? max,
  3. List<Trait>? traits,
})

Constructs a Kind for an unsigned 32 bit int.

Implementation

const IntKind.uint32({
  int min = 0,
  int? max,
  List<Trait>? traits,
}) : this._raw(
        isUnsigned: true,
        bits: 32,
        min: min,
        max: max,
        traits: traits,
        typedDataFactory: Uint32List.new,
      );