Place constructor

Place({
  1. String? id,
  2. String? name,
  3. String? ref,
  4. String? role,
})

Implementation

Place({
  this.id,
  this.name,
  this.ref,
  this.role,
});