GooglePayParams constructor

GooglePayParams({
  1. required int merchantId,
  2. required int amount,
  3. required String currency,
  4. bool isSandbox = false,
})

Implementation

GooglePayParams(
    {required int merchantId,
    required int amount,
    required String currency,
    bool isSandbox = false})
    : this._merchantId = merchantId,
      this._amount = amount,
      this._currency = currency,
      this._isSandbox = isSandbox;