main function

void main()

Launches the app in the production environment.

Constructs a FlutterAppConfig for AppEnvironment.production and runs the full startup sequence via FlutterAppConfig.run.

Implementation

void main() async {
  await const FlutterAppConfig(environment: AppEnvironment.production, envFilePath: 'keys/env/.env-production').run();
}