HeaderBBox constructor
HeaderBBox({
- Int64? left,
- Int64? right,
- Int64? top,
- Int64? bottom,
Implementation
factory HeaderBBox({
$fixnum.Int64? left,
$fixnum.Int64? right,
$fixnum.Int64? top,
$fixnum.Int64? bottom,
}) {
final $result = create();
if (left != null) {
$result.left = left;
}
if (right != null) {
$result.right = right;
}
if (top != null) {
$result.top = top;
}
if (bottom != null) {
$result.bottom = bottom;
}
return $result;
}