main function
Launches the app in the staging environment.
Constructs a FlutterAppConfig for AppEnvironment.staging and runs the full startup sequence via FlutterAppConfig.run.
Implementation
void main() async {
await const FlutterAppConfig(environment: AppEnvironment.staging, envFilePath: 'keys/env/.env-staging').run();
}