BaseContact constructor

BaseContact(
  1. AtContact? contact, {
  2. bool? isBlocking = false,
  3. bool? isMarkingFav = false,
  4. bool? isDeleting = false,
})

Implementation

BaseContact(
  this.contact, {
  this.isBlocking = false,
  this.isMarkingFav = false,
  this.isDeleting = false,
});