getBottomRight method
- FinderBase<
Element> finder, { - bool warnIfMissed = false,
- String callee = 'getBottomRight',
Returns the point at the bottom right of the given widget. This point is not inside the object's hit test area.
If warnIfMissed
is true (the default is false), then the returned
coordinate is checked to see if a hit test at the returned location would
actually include the specified element in the HitTestResult, and if not,
a warning is printed to the console.
The callee
argument is used to identify the method that should be
referenced in messages regarding warnIfMissed
. It can be ignored unless
this method is being called from another that is forwarding its own
warnIfMissed
parameter (see e.g. the implementation of tap).
Implementation
Offset getBottomRight(finders.FinderBase<Element> finder, { bool warnIfMissed = false, String callee = 'getBottomRight' }) {
return _getElementPoint(finder, (Size size) => size.bottomRight(Offset.zero), warnIfMissed: warnIfMissed, callee: callee);
}