insertTable method

Future insertTable(
  1. int row,
  2. int column
)

Inserts a table into the editor.

The insertTable method is used to insert a table into the editor with the specified number of rows and columns.

Implementation

Future insertTable(int row, int column) async {
  return await _editorKey?.currentState
      ?._insertTableToEditor(row: row, column: column);
}