canMoveBlockToIndex method
Whether the top-level block containing blockId can move to targetIndex.
Implementation
bool canMoveBlockToIndex(
String blockId, {
required int targetIndex,
}) {
return documentEditor.canMoveBlockToIndex(
blockId: blockId,
targetIndex: targetIndex,
);
}