changeStatus method

void changeStatus(
  1. ContactDetail phoneItem
)

Implementation

void changeStatus(ContactDetail phoneItem) {
  phoneItem.isSelected = !phoneItem.isSelected;
  contactList.refresh();
}