MultiSelectPropertySchema constructor
MultiSelectPropertySchema({
- String? title,
- String? description,
- int? minItems,
- int? maxItems,
- required MultiSelectItems items,
- List<
String> ? defaultValue, - AcpJsonMap? meta,
Implementation
MultiSelectPropertySchema({
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!);