7 lines
108 B
Dart

class Coordinate {
final double x;
final double y;
Coordinate({required this.x, required this.y});
}