copyWith method
Implementation
ChatJoinRequest copyWith({
  int? userId,
  int? date,
  String? bio,
}) => ChatJoinRequest(
  userId: userId ?? this.userId,
  date: date ?? this.date,
  bio: bio ?? this.bio,
);ChatJoinRequest copyWith({
  int? userId,
  int? date,
  String? bio,
}) => ChatJoinRequest(
  userId: userId ?? this.userId,
  date: date ?? this.date,
  bio: bio ?? this.bio,
);