insertTable method

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

insertTable method is used to insert table by row and column to the editor

Implementation

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