WorkShop constructor

WorkShop({
  1. String? id,
  2. String? name,
  3. required bool isCenter,
  4. String? phoneNumber,
  5. required CustomLocation loc,
})

Implementation

WorkShop(
    {this.id,
    this.name,
    required this.isCenter,
    this.phoneNumber,
    required this.loc});