copyWith method
Implementation
ImportedContacts copyWith({
List<int>? userIds,
List<int>? importerCount,
dynamic extra,
int? clientId,
}) => ImportedContacts(
userIds: userIds ?? this.userIds,
importerCount: importerCount ?? this.importerCount,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);