CustomerListResponse constructor

CustomerListResponse({
  1. int? status,
  2. String? message,
  3. List<Customer>? data,
})

Implementation

CustomerListResponse({
    this.status,
    this.message,
    this.data,});