CustomContact constructor

CustomContact({
  1. Contact? contact,
  2. bool isChecked = false,
})

Implementation

CustomContact({
  this.contact,
  this.isChecked = false,
});