routes property
Map<String, WidgetBuilder> ?
get
routes
Returns the routes used by the App's View.
Implementation
static Map<String, WidgetBuilder>? get routes => _appState?.routes;
set
routes
(Map<String, WidgetBuilder> ? v)
Implementation
static set routes(Map<String, WidgetBuilder>? v) {
if (v != null) {
_appState?.routes = v;
}
}