getTestMerchantPaymentId static method
Implementation
static String getTestMerchantPaymentId() {
final uuidLength = Uuid().v4().length;
final testmerchPayIdRand = Uuid().v4().substring(uuidLength - 12);
return 'TESTMERCH_PAY_$testmerchPayIdRand';
}