activePinpad method
Implementation
Future<bool> activePinpad(String activationCode) async {
try {
await channel.invokeMethod(PaymentTypeCall.ACTIVEPINPAD.method, {"code": activationCode});
return true;
} catch (e) {
return false;
}
}