getIniConfig static method

Future<Config> getIniConfig(
  1. String assetPath
)

Implementation

static Future<Config> getIniConfig(String assetPath) {
  return rootBundle.loadString(assetPath).then((value) => Config.fromString(value));
}