IntKind.uint64 constructor

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

Constructs a Kind for an unsigned 64 bit int.

Implementation

const IntKind.uint64({
  int min = 0,
  int? max,
  List<Trait>? traits,
}) : this._raw(
        isUnsigned: true,
        bits: 64,
        min: min,
        max: max,
        traits: traits,
        typedDataFactory: isRunningInJs ? null : Uint64List.new,
      );