NiceReferencePoint constructor

const NiceReferencePoint({
  1. required String id,
  2. required String name,
  3. required NiceReferencePointType type,
  4. required Offset position,
  5. required String floorId,
  6. String? description,
  7. IconData? icon,
})

Implementation

const NiceReferencePoint({
  required this.id,
  required this.name,
  required this.type,
  required this.position,
  required this.floorId,
  this.description,
  this.icon,
});