IntKind.int64 constructor

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

Constructs a Kind for a signed 64 bit int.

Implementation

const IntKind.int64({
  int? min,
  int? max,
  List<Trait>? traits,
}) : this._raw(
        bits: 64,
        min: min,
        max: max,
        traits: traits,
        typedDataFactory: isRunningInJs ? null : Int64List.new,
      );