ElicitationPropertySchemaBoolean constructor
ElicitationPropertySchemaBoolean({
- required String type,
- String? title,
- String? description,
- bool? defaultValue,
- AcpJsonMap? meta,
Implementation
ElicitationPropertySchemaBoolean({
required this.type,
this.title,
this.description,
this.defaultValue,
AcpJsonMap? meta,
}) : meta = meta == null ? null : deepFreezeAcpJsonMap(meta!),
super();