SessionConfigOptionBoolean constructor
SessionConfigOptionBoolean({
- required SessionConfigId id,
- required String name,
- String? description,
- SessionConfigOptionCategory? category,
- AcpJsonMap? meta,
- required String type,
- 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();