class Device { final String ip; final int port; Device({required this.ip, required this.port}); factory Device.fromJson(Map json) { return Device( ip: json['ip'], port: json['port'], ); } String get address => '$ip:$port'; }