TransactionResponse constructor

TransactionResponse({
  1. int? status,
  2. String? message,
  3. Data? data,
})

Implementation

TransactionResponse({
  this.status,
  this.message,
  this.data,
});