SessionConfigOptionBoolean constructor

SessionConfigOptionBoolean({
  1. required SessionConfigId id,
  2. required String name,
  3. String? description,
  4. SessionConfigOptionCategory? category,
  5. AcpJsonMap? meta,
  6. required String type,
  7. required bool currentValue,
})

Implementation

SessionConfigOptionBoolean({
  required this.id,
  required this.name,
  this.description,
  this.category,
  AcpJsonMap? meta,
  required this.type,
  required this.currentValue,
}) : meta = meta == null ? null : deepFreezeAcpJsonMap(meta!),
     super();