GetBaseResponse constructor

GetBaseResponse({
  1. String? status,
  2. int? code,
  3. int? total,
  4. String? message,
  5. dynamic data,
  6. dynamic raw,
})

Implementation

GetBaseResponse({
  this.status,
  this.code,
  this.total,
  this.message,
  this.data,
  this.raw,
});