Place constructor

Place({
  1. String? id,
  2. required String name,
})

Implementation

Place({
  this.id,
  required this.name,
});