copyWithWrapped method

FwStandardModelsCheckBoxListItem copyWithWrapped({
  1. Wrapped<String?>? value,
  2. Wrapped<String?>? text,
  3. Wrapped<bool?>? selected,
})

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));
}