handlerName method

String handlerName(
  1. MetaRoute parent
)

Implementation

String handlerName(MetaRoute parent) {
  final method = path ?? '';
  final joined = '${parent.path}_$method';

  return '_${joined.toNoCase().toCamelCase()}';
}