MultiSelectPropertySchema constructor
MultiSelectPropertySchema({
- required MultiSelectItems items,
- String? title,
- String? description,
- AcpUint64? minItems,
- AcpUint64? maxItems,
- List<
String> ? defaultValue, - AcpJsonObject? meta,
Creates a MultiSelectPropertySchema value.
Implementation
MultiSelectPropertySchema({
required this.items,
this.title,
this.description,
this.minItems,
this.maxItems,
List<String>? defaultValue,
this.meta,
}) : defaultValue = defaultValue == null
? null
: List<String>.unmodifiable(defaultValue);