TestVectorInt constructor

const TestVectorInt({
  1. required List<int> value,
  2. dynamic extra,
  3. int? clientId,
})

A simple object containing a vector of numbers; for testing only

Implementation

const TestVectorInt({
  required this.value,
  this.extra,
  this.clientId,
});