Remove unused method

This commit is contained in:
Ian VanSchooten 2024-08-28 15:28:28 -04:00
parent 98a0818db2
commit 0e329ff92b
1 changed files with 0 additions and 8 deletions

View File

@ -37,14 +37,6 @@ class Settings {
_set('logWrap', enabled);
}
String _getString(String key, String defaultValue) {
final val = _settings[key];
if (val is String) {
return val;
}
return defaultValue;
}
bool _getBool(String key, bool defaultValue) {
final val = _settings[key];
if (val is bool) {