Box constructor

Box(
  1. Mix mix, {
  2. required Widget? child,
  3. Key? key,
})

Implementation

Box(
  Mix mix, {
  required this.child,
  Key? key,
}) : super(mix, key: key);