copyWith method

FoundUsers copyWith({
  1. List<int>? userIds,
  2. String? nextOffset,
})

Implementation

FoundUsers copyWith({List<int>? userIds, String? nextOffset}) => FoundUsers(
  userIds: userIds ?? this.userIds,
  nextOffset: nextOffset ?? this.nextOffset,
);