Transaction constructor

Transaction({
  1. required String email,
  2. required String? reference,
  3. required int amount,
  4. String? locale,
  5. String? accessCode,
  6. String? plan,
  7. String? currency,
})

Implementation

Transaction({
  required this.email,
  required this.reference,
  required this.amount,
  this.locale,
  this.accessCode,
  this.plan,
  this.currency,
});