CLShellPageActions constructor

const CLShellPageActions({
  1. Key? key,
  2. required List<ShellAction> actions,
  3. required Widget child,
  4. bool gateOnCurrentRoute = true,
})

Implementation

const CLShellPageActions({
  super.key,
  required this.actions,
  required this.child,
  this.gateOnCurrentRoute = true,
});