box property

  1. @override
PdfRect? box
override

The bounding box of this widget, calculated at layout time

Implementation

@override
PdfRect? get box => child.box;
  1. @override
void box=(PdfRect? value)
override

The bounding box of this widget, calculated at layout time

Implementation

@override
set box(PdfRect? value) => child.box = value;