Box constructor

const Box({
  1. Key? key,
  2. List<Widget>? children = const [],
  3. StyleSheet styleSheet = const StyleSheet(),
  4. BoxBaseStyles? externalStyles,
})

Implementation

const Box({
  Key? key,
  this.children = const [],
  this.styleSheet = const StyleSheet(),
  this.externalStyles,
}) : super(key: key);