CustomBoxy constructor

const CustomBoxy({
  1. Key? key,
  2. required BoxyDelegate<Object> delegate,
  3. List<Widget> children,
})

Constructs a CustomBoxy with BoxyDelegate that can manage BoxyChild children.

Implementation

const factory CustomBoxy({
  Key? key,
  required BoxyDelegate delegate,
  List<Widget> children,
}) = _CustomBoxy;