SgConfig constructor

SgConfig({
  1. required String version,
  2. required List<String> routePaths,
})

Creates a config from an already-parsed version and routePaths.

Implementation

SgConfig({
  required this.version,
  required this.routePaths,
});