copyWithWrapped method

GroupV2 copyWithWrapped({
  1. Wrapped<String?>? id,
  2. Wrapped<String?>? name,
  3. Wrapped<String?>? description,
})

Implementation

GroupV2 copyWithWrapped(
    {Wrapped<String?>? id,
    Wrapped<String?>? name,
    Wrapped<String?>? description}) {
  return GroupV2(
      id: (id != null ? id.value : this.id),
      name: (name != null ? name.value : this.name),
      description:
          (description != null ? description.value : this.description));
}