configure static method

Future configure({
  1. String? merchantId,
  2. String? publicKey,
})

CONFIGURE PAYMENT PARAMETERS MERCHENT ID - Your Paynimo merchant ID PUBLIC KEY - Your Paynimo public key

Implementation

static Future configure({
  String? merchantId,
  String? publicKey,
}) async {
  var paynimoData = {
    "merchantId": "$merchantId",
    "publicKey": "$publicKey",
  };
  return await _channel.invokeMethod('configure', paynimoData);
}