copyWith method
Implementation
ConnectedWebsite copyWith({
int? id,
String? domainName,
int? botUserId,
String? browser,
String? platform,
int? logInDate,
int? lastActiveDate,
String? ip,
String? location,
}) =>
ConnectedWebsite(
id: id ?? this.id,
domainName: domainName ?? this.domainName,
botUserId: botUserId ?? this.botUserId,
browser: browser ?? this.browser,
platform: platform ?? this.platform,
logInDate: logInDate ?? this.logInDate,
lastActiveDate: lastActiveDate ?? this.lastActiveDate,
ip: ip ?? this.ip,
location: location ?? this.location,
);