delete method

  1. @override
Future<bool> delete(
  1. String atSign
)

takes atSign of the contact as an input and delete the contacts from the contact_list on success return true otherwise false

Implementation

@override
Future<bool> delete(String atSign) async {
  var newAtKey = _formKey(KeyType.contact, key: atSign);
  return await atClient!.delete(newAtKey);
}