defaultPath static method

String defaultPath({
  1. String? home,
})

The default profile path, ~/.omnyshell/profile.yaml (honoring OMNYSHELL_HOME/HOME). home overrides the base directory in tests.

Implementation

static String defaultPath({String? home}) =>
    omnyshellPath(['profile.yaml'], home: home);