Box constructor

const Box({
  1. Style? style,
  2. Key? key,
  3. bool inherit = false,
  4. Widget? child,
  5. List<Type> orderOfModifiers = const [],
})

Implementation

const Box({
  super.style,
  super.key,
  super.inherit,
  this.child,
  super.orderOfModifiers = const [],
});