HostConfiguration constructor

const HostConfiguration({
  1. required String acceptorId,
  2. required String accountId,
  3. required String accountToken,
  4. String applicationId = '8414',
  5. String applicationName = 'triPOS Flutter',
  6. String applicationVersion = '1.0.0',
  7. PaymentProcessor paymentProcessor = PaymentProcessor.worldpay,
  8. String? storeCardId,
  9. String? storeCardPassword,
  10. String? vaultId,
})

Implementation

const HostConfiguration({
  required this.acceptorId,
  required this.accountId,
  required this.accountToken,
  this.applicationId = '8414',
  this.applicationName = 'triPOS Flutter',
  this.applicationVersion = '1.0.0',
  this.paymentProcessor = PaymentProcessor.worldpay,
  this.storeCardId,
  this.storeCardPassword,
  this.vaultId,
});