7 lines
149 B
Dart
7 lines
149 B
Dart
class XmppConnectionAddress {
|
|
final String hostname;
|
|
final int port;
|
|
|
|
XmppConnectionAddress({ required this.hostname, required this.port });
|
|
}
|