copyWith method

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

Implementation

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