CustomBoxy.box constructor

const CustomBoxy.box({
  1. Key? key,
  2. required BoxBoxyDelegate<Object> delegate,
  3. List<Widget> children,
  4. InflatedChildHandleFactory childFactory,
})

Constructs a CustomBoxy with BoxBoxyDelegate that can manage both BoxyChild and SliverBoxyChild children.

Implementation

const factory CustomBoxy.box({
  Key? key,
  required BoxBoxyDelegate delegate,
  List<Widget> children,
  InflatedChildHandleFactory childFactory,
}) = _BoxCustomBoxy;