copyWith method

ConnectedWebsite copyWith({
  1. int? id,
  2. String? domainName,
  3. int? botUserId,
  4. String? browser,
  5. String? platform,
  6. int? logInDate,
  7. int? lastActiveDate,
  8. String? ip,
  9. String? location,
})

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,
    );