copyWithWrapped method

PatchMonthCategoryWrapper copyWithWrapped({
  1. Wrapped<SaveMonthCategory>? category,
})

Implementation

PatchMonthCategoryWrapper copyWithWrapped(
    {Wrapped<SaveMonthCategory>? category}) {
  return PatchMonthCategoryWrapper(
      category: (category != null ? category.value : this.category));
}