inferPath function

String inferPath(
  1. String className
)

Implementation

String inferPath(String className) {
  final base = _stripRouteSuffix(className);
  return '/${_toKebab(base)}';
}