getBottomLeft method

Offset getBottomLeft (Finder finder)

Returns the point at the bottom left of the given widget. This point is not inside the object's hit test area.

Implementation

Offset getBottomLeft(Finder finder) {
  return _getElementPoint(finder, (Size size) => size.bottomLeft(Offset.zero));
}