This repository has been archived on 2025-04-22. You can view files and clone it, but cannot push or open issues or pull requests.
ha_client/lib/entity_class/sun_entity.class.dart
2018-10-11 23:02:05 +03:00

12 lines
220 B
Dart

part of '../main.dart';
class _SunEntityWidgetState extends _EntityWidgetState {
@override
Map <String, String> _displayStates = {
"below_horizon": "Below horizon",
"above_horizon": "Above horizon"
};
}