Files
wehub-resource-sync bb087aad19
CI / format (push) Failing after 2s
CI / packaging (push) Failing after 0s
CI / test (push) Failing after 3s
chore: import upstream snapshot with attribution
2026-07-13 11:58:56 +08:00

15 lines
299 B
Dart

import 'package:dart_mappable/dart_mappable.dart';
part 'network_state.mapper.dart';
@MappableClass()
class NetworkState with NetworkStateMappable {
final List<String> localIps;
final bool initialized;
const NetworkState({
required this.localIps,
required this.initialized,
});
}