getBottomRight method

Future<DriverOffset> getBottomRight(
  1. SerializableFinder finder,
  2. {Duration? timeout}
)

Returns the point at the bottom right of the widget identified by finder.

The offset is expressed in logical pixels and can be translated to device pixels via dart:ui.FlutterView.devicePixelRatio.

Implementation

Future<DriverOffset> getBottomRight(SerializableFinder finder, { Duration? timeout }) async {
  return _getOffset(finder, OffsetType.bottomRight, timeout: timeout);
}