getCell method

GuiVComponent? getCell(
  1. int row,
  2. int column
)

Implementation

GuiVComponent? getCell(int row, int column) {
  final object = obj.getCell(row, column);
  return object != null ? GuiVComponent(object) : null;
}