ElicitationPropertySchemaBoolean constructor

ElicitationPropertySchemaBoolean({
  1. required String type,
  2. String? title,
  3. String? description,
  4. bool? defaultValue,
  5. AcpJsonMap? meta,
})

Implementation

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