getRouterName function

String getRouterName(
  1. Darto app
)

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';