copyWith method

Users copyWith({
  1. int? totalCount,
  2. List<int>? userIds,
})

Implementation

Users copyWith({int? totalCount, List<int>? userIds}) => Users(
  totalCount: totalCount ?? this.totalCount,
  userIds: userIds ?? this.userIds,
);