copyWithWrapped method

Implementation

FwStandardModelsSelectedCheckBoxListItem copyWithWrapped(
    {Wrapped<String?>? value}) {
  return FwStandardModelsSelectedCheckBoxListItem(
      value: (value != null ? value.value : this.value));
}