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