globalStore property

File get globalStore

The machine-wide store, shared by every project on this machine.

Implementation

static File get globalStore => File(
      path.join(
        Platform.environment['HOME'] ??
            Platform.environment['USERPROFILE'] ??
            '.',
        '.distribute',
        'ai.json',
      ),
    );