HeaderBBox constructor

HeaderBBox({
  1. Int64? left,
  2. Int64? right,
  3. Int64? top,
  4. 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;
}