CustomersModel constructor

CustomersModel({
  1. bool? success,
  2. int? code,
  3. String? description,
  4. List<Datum>? data,
})

Implementation

CustomersModel({
  this.success,
  this.code,
  this.description,
  this.data,
});