getRouterName function
Returns the name of the Darto router implementation.
Mirrors the Hono getRouterName helper for API familiarity.
final app = Darto();
print(getRouterName(app)); // 'Darto'
Implementation
String getRouterName(Darto app) => 'Darto';