toShortString method

String toShortString()

Converts the PaymentMethods enum to a short string representation.

Implementation

String toShortString() {
  String? paymentMethod = "ALL";
  if (this != null) {
    paymentMethod = toString().split('.').last;
  }

  return getPlatformPaymentMethod(paymentMethod);
}