TransactionDto constructor

TransactionDto({
  1. String? responseCode,
  2. String? statusCode,
  3. String? status,
  4. String? message,
  5. DataDto? data,
})

Implementation

TransactionDto({
  this.responseCode,
  this.statusCode,
  this.status,
  this.message,
  this.data,
});