FormBuilderInput.checkboxList constructor
Implementation
FormBuilderInput.checkboxList({
@required this.label,
@required this.options,
@required this.attribute,
this.readonly = false,
this.hint,
this.value,
this.require = false,
this.validator,
}) : assert(value == null || value is List) {
value == value ?? []; // ignore: unnecessary_statements
type = FormBuilderInput.TYPE_CHECKBOX_LIST;
}