ResponseStruct constructor

ResponseStruct({
  1. String? msg,
  2. dynamic data,
  3. int? status,
  4. int currentPage = 1,
  5. String? networkMsg,
  6. int perPage = 0,
  7. int totalPages = 1,
})

Implementation

ResponseStruct({
  this.msg,
  this.data,
  this.status,
  this.currentPage = 1,
  this.networkMsg,
  this.perPage = 0,
  this.totalPages = 1,
});