EnvConfig<E extends Enum> constructor

const EnvConfig<E extends Enum>({
  1. required E env,
  2. required String assetPath,
})

Creates an EnvConfig with the given env and assetPath.

Implementation

const EnvConfig({
  required this.env,
  required this.assetPath,
});