deleteAtSign method

dynamic deleteAtSign({
  1. required String atSign,
})

Implementation

deleteAtSign({required String atSign}) async {
  try {
    var result = await atContactImpl.delete(atSign);
    print('delete result => $result');
    fetchContacts();
  } catch (error) {
    print('error in delete atsign:$error');
  }
}