AllCustomersList constructor

AllCustomersList({
  1. required bool has_more,
  2. required List<Customer> customers,
})

Implementation

AllCustomersList({
  required this.has_more,
  required this.customers,
});