pbhuvanesh
pbhuvanesh
Yes I did my dontenv.load is the 2nd line after EnsureInitialized On Sun, Apr 25, 2021 at 1:56 PM ngxingyu ***@***.***> wrote: > Did you run dotenv.load(fileName: 'dotenv'); before you...
`void main() async { WidgetsFlutterBinding.ensureInitialized(); initialize(); await DotEnv.load(); HttpOverrides.global = new MyHttpOverrides(); FlavorConfig( flavor: Flavor.DEV, values: FlavorValues(baseUrl: getServerUrl(Flavor.DEV.toString()))); setPathUrlStrategy(); runApp(App()); }` Here is my code. I've awaited the load yet...