TestInt constructor

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

A simple object containing a number; for testing only

Implementation

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