Transaction constructor

Transaction({
  1. String? kind,
  2. String? status,
  3. String? amount,
  4. String? currency,
  5. String? gateway,
  6. bool? test,
})

Implementation

Transaction(
    {this.kind,
    this.status,
    this.amount,
    this.currency,
    this.gateway,
    this.test});