copyWith method

ChangeImportedContacts copyWith({
  1. List<Contact>? contacts,
})

Implementation

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