loadEnv static method

Future<void> loadEnv(
  1. String fileName
)

Implementation

static Future<void> loadEnv(String fileName) async {
  logDebug("Loading .env $fileName");
  await dotenv.load(fileName: 'env/$fileName');
}