runApp function

ClientAppBinding runApp(
  1. Component app, {
  2. String attachTo = 'body',
})

Main entry point for the browser app.

Implementation

ClientAppBinding runApp(Component app, {String attachTo = 'body'}) {
  return ClientAppBinding()..attachRootComponent(app, attachTo: attachTo);
}