ghVerifyVoters method
Implementation
Future<dynamic> ghVerifyVoters({
required String type,
required String number,
}) async {
_performance();
Map<String, dynamic> payload = {
'number': number,
'type': type,
};
return Verifier(
appID: app_id,
apiKey: api_key,
).ghVerifyVoters(payload);
}