mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-27 08:24:05 +02:00
11 lines
204 B
Dart
11 lines
204 B
Dart
class Coordinate {
|
|
final double x;
|
|
final double y;
|
|
|
|
Coordinate({required this.x, required this.y});
|
|
|
|
Coordinate.fromJson(Map<String, dynamic> json)
|
|
: x = json["x"],
|
|
y = json["y"];
|
|
}
|