CenterModel constructor

CenterModel({
  1. String? id,
  2. String? name,
  3. String? phoneNumber,
  4. String? email,
  5. String? address,
})

Implementation

CenterModel({
  this.id,
  this.name,
  this.phoneNumber,
  this.email,
  this.address,
  this.logo,
});