isExportable property
Whether or not to allow the export button to be pressed.
Implementation
bool get isExportable {
for (String value in textValues.values) {
if (value.isNotEmpty) {
return true;
}
}
return false;
}
Whether or not to allow the export button to be pressed.
bool get isExportable {
for (String value in textValues.values) {
if (value.isNotEmpty) {
return true;
}
}
return false;
}