load static method

Future<SDConfig> load(
  1. File file
)

Implementation

static Future<SDConfig> load(File file) async {
  final contents = await file.readAsString();
  return fromYaml(contents);
}