NestedPuncher constructor

const NestedPuncher({
  1. Key? key,
  2. required double radius,
  3. double overlap = 0.6,
  4. bool enabled = true,
  5. Shaper? shape,
  6. double margin = 2,
  7. bool inner = true,
  8. bool outer = true,
  9. List<PuncherClip> punchers = const [],
  10. required Widget child,
})

Implementation

const NestedPuncher({
  super.key,
  required this.radius,
  this.overlap = 0.6,
  this.enabled = true,
  this.shape,
  this.margin = 2,
  this.inner = true,
  this.outer = true,
  this.punchers = const [],
  required this.child,
});