First commit

This commit is contained in:
aliakbar
2026-06-25 21:21:30 +03:30
parent 55d33677d9
commit 5c34cef2c3
147 changed files with 7197 additions and 0 deletions
@@ -0,0 +1,15 @@
class Device {
final String ip;
final int port;
Device({required this.ip, required this.port});
factory Device.fromJson(Map<String, dynamic> json) {
return Device(
ip: json['ip'],
port: json['port'],
);
}
String get address => '$ip:$port';
}