CssBoxWidget constructor

const CssBoxWidget({
  1. Key? key,
  2. required Widget child,
  3. required CSS3 style,
  4. TextDirection? textDirection,
  5. bool childIsReplaced = false,
  6. bool shrinkWrap = false,
})

Implementation

const CssBoxWidget({
  super.key,
  required this.child,
  required this.style,
  this.textDirection,
  this.childIsReplaced = false,
  this.shrinkWrap = false,
});