getStrByYml method

Future<String> getStrByYml(
  1. String assetPath,
  2. String target
)

引数のyamlパスと parent.child.itemのようなdot区切りの形式で指定された文字列を元に 値を文字列として取得し返す

Implementation

Future<String> getStrByYml(String assetPath, String target) async {
  return getStringByYmlText(await loadText(assetPath), target);
}