deleteAtSign method
Implementation
Future<bool> deleteAtSign({required String atSign}) async {
try {
var result = await atContactImpl.delete(atSign);
print('delete result => $result');
_removeContact(atSign);
return result;
} catch (error) {
print('error in delete atsign:$error');
return false;
}
}