PaymentInitiationResponse constructor

PaymentInitiationResponse({
  1. String? storeName,
  2. String? orderId,
  3. double? billAmount,
  4. String? currency,
  5. String? token,
  6. String? qrToken,
})

Implementation

PaymentInitiationResponse({
    String? storeName,
    String? storeLogo,
    String? orderId,
    double? billAmount,
    String? currency,
    String? token,
    String? qrToken,}){
  _storeName = storeName;
  _storeLogo = storeLogo;
  _orderId = orderId;
  _billAmount = billAmount;
  _currency = currency;
  _token = token;
  _qrToken = qrToken;
}