childTrailingLayoutOffset method

double childTrailingLayoutOffset(
  1. RenderBox child
)

Return the trailing position of the child.

Implementation

double childTrailingLayoutOffset(RenderBox child) {
  return childScrollOffset(child)! + paintExtentOf(child);
}