Skip to content

Instantly share code, notes, and snippets.

@JEuler
Created June 5, 2022 19:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JEuler/3e622644d05739400396c44d314053f2 to your computer and use it in GitHub Desktop.
Save JEuler/3e622644d05739400396c44d314053f2 to your computer and use it in GitHub Desktop.
void main() {
final configuredApp = AppConfig(
appName: 'App',
flavorName: 'uat',
apiBaseUrl: uatServerUrl,
coreAppBaseUrl: uatServerCoreUrl,
child: App(
WebService.create(uatServerUrl),
StorageServiceImpl(),
CoreAppWebService.create(uatServerCoreUrl),
),
);
run(configuredApp);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment