mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
8 lines
158 B
Dart
8 lines
158 B
Dart
class AnalyticsDevice {
|
|
const AnalyticsDevice();
|
|
|
|
factory AnalyticsDevice.fromJson(Map<String, dynamic> json) {
|
|
return const AnalyticsDevice();
|
|
}
|
|
}
|