SessionConfigSelectOption constructor

SessionConfigSelectOption({
  1. required SessionConfigValueId value,
  2. required String name,
  3. String? description,
  4. AcpJsonObject? meta,
})

Creates a SessionConfigSelectOption value.

Implementation

SessionConfigSelectOption({
  required this.value,
  required this.name,
  this.description,
  this.meta,
});