routeName property

String routeName

Route's name.

The name of the route.

Implementation

String get routeName {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Route_getRouteName(_handle, errorHandler);
  });
  return stringHandle.toDartString();
}