ServerResponse constructor

ServerResponse({
  1. required String status,
  2. required String message,
  3. String? transactionNumber,
  4. String? invoiceNumber,
  5. String? error,
})

Implementation

ServerResponse({
  required this.status,
  required this.message,
  this.transactionNumber,
  this.invoiceNumber,
  this.error,
});