PAYableIPGClient constructor

const PAYableIPGClient({
  1. required String logoUrl,
  2. required String returnUrl,
  3. required String merchantKey,
  4. required String merchantToken,
  5. String? webhookUrl,
  6. IPGEnvironment? environment,
})

Sets the params applicable for all payments.

Implementation

const PAYableIPGClient({
  required this.logoUrl,
  required this.returnUrl,
  required this.merchantKey,
  required this.merchantToken,
  this.webhookUrl,
  this.environment,
});