Resolves #204 Alarm panel card support

This commit is contained in:
estevez-dev
2019-01-29 15:00:15 +02:00
parent 24c7675fa4
commit 5e814e8109
8 changed files with 219 additions and 34 deletions

View File

@ -12,6 +12,7 @@ class HACard {
bool showEmpty;
int columnsCount;
List stateFilter;
List states;
String content;
HACard({
@ -24,6 +25,7 @@ class HACard {
this.stateFilter: const [],
this.showEmpty: true,
this.content,
this.states,
@required this.type
});