Transaction constructor

Transaction({
  1. int? id,
  2. String? uuid,
  3. String? transactionId,
  4. String? userId,
  5. String? companyId,
  6. String? authorizationMethod,
  7. String? code,
  8. bool? active,
  9. bool? complete,
  10. String? createdAt,
  11. String? updatedAt,
  12. String? deletedAt,
})

Implementation

Transaction({
  this.id,
  this.uuid,
  this.transactionId,
  this.userId,
  this.companyId,
  this.authorizationMethod,
  this.code,
  this.active,
  this.complete,
  this.createdAt,
  this.updatedAt,
  this.deletedAt,
});