resolveRoute method
- String path
Implementation
Widget Function()? resolveRoute(String path) {
final builder = _routes[path];
if (builder != null) {
debugPrint('✅ Route found: $path');
} else {
debugPrint('❌ Route not found: $path');
}
return builder;
}