SizedBoxHitTestWithoutSizeLimit constructor

const SizedBoxHitTestWithoutSizeLimit({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Widget? child,
})

Implementation

const SizedBoxHitTestWithoutSizeLimit(
    {Key? key, double? width, double? height, Widget? child})
    : super(
        key: key,
        child: child,
        width: width,
        height: height,
      );