copyWithWrapped method
Implementation
FwStandardModelsCheckBoxListItem copyWithWrapped(
{Wrapped<String?>? value,
Wrapped<String?>? text,
Wrapped<bool?>? selected}) {
return FwStandardModelsCheckBoxListItem(
value: (value != null ? value.value : this.value),
text: (text != null ? text.value : this.text),
selected: (selected != null ? selected.value : this.selected));
}