isExportable property

bool isExportable

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;
}