OffsetPoint constructor
const
OffsetPoint({})
Creates an OffsetPoint with the given coordinates, timestamp, and optional pressure.
Implementation
const OffsetPoint({
required double dx,
required double dy,
required this.timestamp,
this.pressure,
}) : super(dx, dy);