SessionConfigOptionSelect constructor

SessionConfigOptionSelect(
  1. SessionConfigSelect value, {
  2. required SessionConfigId configId,
  3. required String name,
  4. String? description,
  5. SessionConfigOptionCategory? category,
  6. AcpJsonObject? meta,
})

Creates this known tagged-union variant.

Implementation

SessionConfigOptionSelect(
  this.value, {
  required this.configId,
  required this.name,
  this.description,
  this.category,
  this.meta,
});