modifyTable method

Future modifyTable(
  1. EditTableEnum type
)

Modifies an existing table in the editor.

The modifyTable method is used to add or remove rows or columns of an existing table in the editor.

Implementation

Future modifyTable(EditTableEnum type) async {
  return await _editorKey?.currentState?._modifyTable(type);
}