ZBox constructor

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

Implementation

const ZBox({
  this.children = const <Widget>[],
  super.inherit,
  super.key,
  super.style,
  super.orderOfDecorators = const [],
});