ElicitationPropertySchemaArray constructor
ElicitationPropertySchemaArray({
- required String type,
- String? title,
- String? description,
- int? minItems,
- int? maxItems,
- required MultiSelectItems items,
- List<
String> ? defaultValue, - AcpJsonMap? meta,
Implementation
ElicitationPropertySchemaArray({
required this.type,
this.title,
this.description,
this.minItems,
this.maxItems,
required this.items,
List<String>? defaultValue,
AcpJsonMap? meta,
}) : defaultValue = defaultValue == null
? null
: List.unmodifiable(defaultValue!),
meta = meta == null ? null : deepFreezeAcpJsonMap(meta!),
super();