TestVectorStringObject constructor

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

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

Implementation

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