param static method
Gets param value for given key
Implementation
static dynamic param(String key) {
/// First preference to customised params
Object? value = _params?[key];
if (value != null) return value;
/// Second preference to file based params
Map<String, dynamic>? params = _current?.params;
if (params == null) return null;
return params[key];
}