paytabscom / flutter-sdk-bridge

MIT License
12 stars 11 forks source link

PaymentSdkTransactionType doesn't have all cases #36

Open mohadel92 opened 2 years ago

mohadel92 commented 2 years ago

the REGISTER case is not available in the Enum of `enum PaymentSdkTransactionType { SALE, AUTH }

extension PaymentSdkTransactionTypeExtension on PaymentSdkTransactionType { String get name { switch (this) { case PaymentSdkTransactionType.AUTH: return "auth";

  default:
    return "sale";
}

} } `