getIniDefaults static method
Implementation
static Future<Map<String,String>> getIniDefaults(String assetPath) {
return rootBundle.loadString(assetPath)
.then((value) => Config.fromString(value), onError: (argh) => Config.fromString(""))
.then((config) => config.defaults());
}