TestVectorIntObject constructor

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

A simple object containing a vector of objects that hold a number; for testing only

Implementation

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