sha_env 0.0.1
sha_env: ^0.0.1 copied to clipboard
Yet another DotEnv handling library for Dart but all the other gave me headaches.
import 'package:sha_env/sha_env.dart';
void main() {
/// Will load the variablesfrom .env file
ShaEnv().loadSync();
/// print variable api key
print(env['API_KEY']);
}