Transaction constructor

Transaction({
  1. bool? status,
  2. bool? success,
  3. String? type,
  4. TransactionData? data,
  5. String? object,
})

Implementation

Transaction({
  this.status,
  this.success,
  this.type,
  this.data,
  this.object,
});