BoxModel constructor

BoxModel({
  1. required Quad content,
  2. required Quad padding,
  3. required Quad border,
  4. required Quad margin,
  5. required int width,
  6. required int height,
  7. ShapeOutsideInfo? shapeOutside,
})

Implementation

BoxModel({
  required this.content,
  required this.padding,
  required this.border,
  required this.margin,
  required this.width,
  required this.height,
  this.shapeOutside,
});