DefaultNetworkResponse<T> constructor

DefaultNetworkResponse<T>({
  1. required int codeStatus,
  2. required String status,
  3. required String message,
  4. String? transactionId,
  5. String? urlPayment,
  6. String? balance,
  7. String? token,
  8. int? exp,
  9. T? data,
})

Implementation

DefaultNetworkResponse({
  required this.codeStatus,
  required this.status,
  required this.message,
  this.transactionId,
  this.urlPayment,
  this.balance,
  this.token,
  this.exp,
  this.data,
});