IntKind.int8 constructor

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

Constructs a Kind for a signed 8 bit int.

Implementation

const IntKind.int8({
  int? min,
  int? max,
  List<Trait>? traits,
}) : this._raw(
        bits: 8,
        min: min,
        max: max,
        traits: traits,
        typedDataFactory: Int8List.new,
      );