deleteByPhones method
Delete By Phones.
ID: 1013fd9e.
Implementation
Future<Result<Boolean>> deleteByPhones({required List<String> phones}) async {
// Preparing the request.
final request = ContactsDeleteByPhones(phones: phones);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<Boolean>();
}