GenericResponse constructor

GenericResponse({
  1. String? transactionId,
  2. String? responseCode,
  3. String? responseMessage,
  4. String? response,
})

Implementation

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