part of 'service.dart'; class ServiceConfig { static Future isProcessExifWifiOnly() async { return Preference.getBool(_pref, _prefProcessWifiOnly, true) .notNull(); } static Future setProcessExifWifiOnly(bool flag) async { await Preference.setBool(_pref, _prefProcessWifiOnly, flag); } static const _pref = "service"; static const _prefProcessWifiOnly = "shouldProcessWifiOnly"; }