getBottomLeft method

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

Returns the point at the bottom left 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> getBottomLeft(SerializableFinder finder, { Duration? timeout }) async {
  return _getOffset(finder, OffsetType.bottomLeft, timeout: timeout);
}