NestedBackButton constructor

const NestedBackButton({
  1. Key? key,
  2. double size = 24,
  3. int nestingLevel = 1,
  4. GestureTapCallback? onTap,
  5. Color? color,
  6. double strokeWidth = 2,
  7. Duration animationDuration = const Duration(milliseconds: 200),
})

Creates a NestedBackButton.

Implementation

const NestedBackButton({
  super.key,
  this.size = 24,
  this.nestingLevel = 1,
  this.onTap,
  this.color,
  this.strokeWidth = 2,
  this.animationDuration = const Duration(milliseconds: 200),
});