CustomersModel constructor

CustomersModel({
  1. int totalItems = 0,
  2. List<CustomerModel>? items,
})

Implementation

CustomersModel({
  this.totalItems = 0,
  this.items,
});