insertTable method
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);
}