modifyTable method

Future modifyTable(
  1. EditTableEnum type
)

modifyTable method is used to add or remove, rows or columns of the table

Implementation

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