lastLayoutChild property

  1. @override
ChildLayout? get lastLayoutChild
override

The last child in the layout tree.

Used as the ending point for layout traversals.

Implementation

@override
ChildLayout? get lastLayoutChild {
  final last = lastChild;
  return last == null ? null : BoxChildLayout(last);
}