set_grid_cell method

Future<Online> set_grid_cell(
  1. String grid_id,
  2. int row,
  3. int column,
  4. String text, {
  5. bool show = true,
})

Implementation

Future<Online> set_grid_cell(
  String grid_id,
  int row,
  int column,
  String text, {
  bool show = true,
}) async {
  var Online = await this;
  return Online.set_grid_cell(
    grid_id,
    row,
    column,
    text,
    show: show,
  );
}