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