activePinpad method

Future<bool> activePinpad(
  1. String activationCode
)

Implementation

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