@override String? getContentAtIndex(int column, int index) { if (index >= 0 && index < _content[column]!.length) { return _content[column]![index].show(); } else { return null; } }