SetOption constructor

SetOption({
  1. String? extra,
  2. int? client_id,
  3. string? name,
  4. OptionValue? value,
})

Implementation

SetOption({
  super.extra,
  super.client_id,
  this.name,
  this.value,
});