copyWith method
Implementation
ChangeImportedContacts copyWith({
  List<Contact>? contacts,
}) => ChangeImportedContacts(
  contacts: contacts ?? this.contacts,
);ChangeImportedContacts copyWith({
  List<Contact>? contacts,
}) => ChangeImportedContacts(
  contacts: contacts ?? this.contacts,
);