TransactionResponseDto constructor

TransactionResponseDto({
  1. bool? success,
  2. String? message,
  3. Data? data,
})

Implementation

TransactionResponseDto({
  this.success,
  this.message,
  this.data,
});