Future<Null> scrollIntoView(SerializableFinder finder)

Scrolls the Scrollable ancestor of the widget located by finder until the widget is completely visible.

Source

Future<Null> scrollIntoView(SerializableFinder finder) async {
  return await _sendCommand(new ScrollIntoView(finder)).then((Map<String, dynamic> _) => null);
}