runApp abstract method

void runApp(
  1. Module module, [
  2. String initialRoutePath = '/'
])

Responsible for starting the app. It should only be called once, but it should be the first method to be called before a route or bind lookup.

Implementation

void runApp(Module module, [String initialRoutePath = '/']);