PaystackConfig constructor

const PaystackConfig({
  1. required String secretKey,
  2. String? currency,
  3. String? callbackUrl,
  4. bool enableLogging = false,
  5. Duration timeout = const Duration(seconds: 30),
})

Implementation

const PaystackConfig({
  required this.secretKey,
  this.currency,
  this.callbackUrl,
  this.enableLogging = false,
  this.timeout = const Duration(seconds: 30),
});