routes property

Map<String, WidgetBuilder>? get routes

Implementation

Map<String, WidgetBuilder>? get routes {
  if (materialApp != null) return materialApp?.routes;
  if (widgetsApp != null) return widgetsApp?.routes;
  if (cupertinoApp != null) return cupertinoApp?.routes;
  return null;
}