ReasonResponse constructor

ReasonResponse({
  1. String? transactionId,
  2. String? responseCode,
  3. String? responseMessage,
  4. String? timestamp,
  5. List<Response>? response,
})

Implementation

ReasonResponse({
  this.transactionId,
  this.responseCode,
  this.responseMessage,
  this.timestamp,
  this.response,
});