IntKind.int16 constructor

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

Constructs a Kind for a signed 16 bit int.

Implementation

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