RenderStackHitTestWithoutSizeLimit constructor

RenderStackHitTestWithoutSizeLimit({
  1. List<RenderBox>? children,
  2. AlignmentGeometry alignment = AlignmentDirectional.topStart,
  3. TextDirection? textDirection,
  4. StackFit fit = StackFit.loose,
  5. Clip clipBehavior = Clip.hardEdge,
})

Implementation

RenderStackHitTestWithoutSizeLimit({
  List<RenderBox>? children,
  AlignmentGeometry alignment = AlignmentDirectional.topStart,
  TextDirection? textDirection,
  StackFit fit = StackFit.loose,
  Clip clipBehavior = Clip.hardEdge,
}) : super(
        alignment: alignment,
        children: children,
        textDirection: textDirection,
        fit: fit,
        clipBehavior: clipBehavior,
      );