GoRouterLocationButton constructor

const GoRouterLocationButton({
  1. Key? key,
  2. required Widget child,
  3. bool visible = true,
})

Implementation

const GoRouterLocationButton({
  super.key,
  required this.child,
  this.visible = true,
});