int intOrDefault(String key, int defaultValue) => configJson[key]?.toString().let(int.tryParse) ?? defaultValue;