logRoute method

T logRoute({
  1. String? prefix,
})

Implementation

T logRoute({String? prefix}) {
  log(
      msg: 'UINavigator.currentRoute: ${UINavigator.currentRoute}',
      prefix: prefix);
  return this as T;
}