mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 15:17:31 +00:00
12 lines
262 B
Dart
12 lines
262 B
Dart
class GetDeviceLocationDataParam {
|
|
const GetDeviceLocationDataParam({
|
|
required this.latitude,
|
|
required this.longitude,
|
|
});
|
|
|
|
final double latitude;
|
|
final double longitude;
|
|
|
|
Map<String, dynamic> toJson() => {'lat': latitude, 'lon': longitude};
|
|
}
|