onSingleLongTapStart method

void onSingleLongTapStart(
  1. LongPressStartDetails details
)

Implementation

void onSingleLongTapStart(LongPressStartDetails details) {
  if (delegate.getSelectionEnabled()) {
    getRenderEditor()!.selectPositionAt(
      details.globalPosition,
      null,
      SelectionChangedCause.longPress,
    );
  }
}