yaml<T> function

Future<T?> yaml<T>(
  1. String key
)

load and extract yaml file attribute by the parent key

Implementation

Future<T?> yaml<T>(String key) async => _YamlParser.yaml<T>(key);