RouteReport constructor

const RouteReport({
  1. Key? key,
  2. required WidgetBuilder builder,
})

Creates a RouteReport widget.

The builder parameter is required and specifies the widget tree for this route.

Implementation

const RouteReport({
  super.key,
  required this.builder,
});