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