copyWith method
Implementation
BusinessConnection copyWith({
String? id,
int? userId,
int? userChatId,
int? date,
BusinessBotRights? rights,
bool? isEnabled,
}) => BusinessConnection(
id: id ?? this.id,
userId: userId ?? this.userId,
userChatId: userChatId ?? this.userChatId,
date: date ?? this.date,
rights: rights ?? this.rights,
isEnabled: isEnabled ?? this.isEnabled,
);