getContentAtIndex method

String? getContentAtIndex(
  1. int column,
  2. int index
)

Implementation

String? getContentAtIndex(int column, int index) {
  return _content[column]?[index].show();
}