unblockAll method
Unblocks multiple phone numbers.
Throws PlatformException with code "security_error" if API unavailable.
Implementation
Future<void> unblockAll(List<String> numbers) async {
await _invoke<void>('blockedNumbers.unblockAll', {'numbers': numbers});
}