Price.fromStripe constructor

Price.fromStripe(
  1. StripePrice stripePrice
)

Implementation

Price.fromStripe(StripePrice stripePrice) :
      amount = stripePrice.unitAmount,
      currency = EnumToString.fromString(AppCurrency.values, stripePrice.currency)!;