Resolves #121 Markdown card support

This commit is contained in:
Yegor Vialov
2019-01-23 23:34:45 +02:00
parent be5ea55f6b
commit 1c8f770f10
9 changed files with 54 additions and 14 deletions

View File

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