getBoolean method
Implementation
Future<bool> getBoolean(String key, bool fallbackValue) async {
try {
final args = [key, fallbackValue];
return await _channel.invokeMethod('getBoolean', args);
} on Exception catch (e) {
Logger.i("$e Error while getting config's");
return fallbackValue;
}
}