getPrintFooter method

Future<bool> getPrintFooter()

Get print footer setting

Implementation

Future<bool> getPrintFooter() async {
  try {
    final value = await _storage.read(key: _printFooterKey);
    return value != 'false'; // Default to true
  } catch (e) {
    return true;
  }
}