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