OptionValueInteger constructor

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

Represents an integer option

Implementation

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