Created empty AnalyticsDevice model.

This commit is contained in:
Faris Armoush
2025-05-14 12:37:44 +03:00
parent f02c5d71ba
commit e4ee456384

View File

@ -0,0 +1,7 @@
class AnalyticsDevice {
const AnalyticsDevice();
factory AnalyticsDevice.fromJson(Map<String, dynamic> json) {
return const AnalyticsDevice();
}
}