BaseListRes constructor

const BaseListRes({
  1. int? page,
  2. int? size,
  3. int? total,
  4. required bool ok,
  5. String? msg,
})

Implementation

const BaseListRes({
  this.page,
  this.size,
  this.total,
  required this.ok,
  this.msg,
});