scrollBottomRight method

Future<void> scrollBottomRight(
  1. double bottom,
  2. double right
)

从当前滑动到距离底部bottom和右边right的位置

Implementation

Future<void> scrollBottomRight(double bottom, double right) =>
    _emitCommand(ControllerEnumType.scrollBottomRight, value: FPosition<double>(right, bottom));