Resolves #205, Resolves #417 Condotional cards support

This commit is contained in:
estevez-dev
2019-08-26 17:03:28 +03:00
parent fbbb96409d
commit 37155901ef
3 changed files with 37 additions and 25 deletions

View File

@ -13,6 +13,7 @@ class HACard {
int columnsCount;
List stateFilter;
List states;
List conditions;
String content;
HACard({
@ -26,6 +27,7 @@ class HACard {
this.showEmpty: true,
this.content,
this.states,
this.conditions,
@required this.type
});