routes property

Returns the routes used by the App's View.

Implementation

static Map<String, WidgetBuilder>? get routes => _appState?.routes;
void routes=(Map<String, WidgetBuilder>? v)

Implementation

static set routes(Map<String, WidgetBuilder>? v) {
  if (v != null) {
    _appState?.routes = v;
  }
}