30 lines
624 B
Dart
30 lines
624 B
Dart
import 'IPAndPort.dart';
|
|
|
|
class StaticHost {
|
|
bool lighthouse;
|
|
List<IPAndPort> destinations;
|
|
|
|
StaticHost({required this.lighthouse, required this.destinations});
|
|
|
|
factory StaticHost.fromJson(Map<String, dynamic> json) {
|
|
var list = json['destinations'] as List<dynamic>;
|
|
var result = <IPAndPort>[];
|
|
|
|
list.forEach((item) {
|
|
result.add(IPAndPort.fromString(item));
|
|
});
|
|
|
|
return StaticHost(
|
|
lighthouse: json['lighthouse'],
|
|
destinations: result,
|
|
);
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'lighthouse': lighthouse,
|
|
'destinations': destinations,
|
|
};
|
|
}
|
|
}
|