mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
12 lines
225 B
Dart
12 lines
225 B
Dart
class AnalyticsDevice {
|
|
const AnalyticsDevice(this.uuid);
|
|
|
|
final String uuid;
|
|
|
|
factory AnalyticsDevice.fromJson(Map<String, dynamic> json) {
|
|
return AnalyticsDevice(
|
|
json['uuid'] as String? ?? '',
|
|
);
|
|
}
|
|
}
|