copyWith method

FilterSubscription copyWith({
  1. GroupName? group,
  2. int? id,
  3. User? user,
})

Implementation

FilterSubscription copyWith({GroupName? group, int? id, User? user}) {
  return FilterSubscription(
    group: group ?? this.group,
    id: id ?? this.id,
    user: user ?? this.user,
  );
}