getItem method
Implementation
D getItem(int index) {
if (index >= dataListSize) {
throw Exception("index:$index out of bound");
}
return data[index];
}
D getItem(int index) {
if (index >= dataListSize) {
throw Exception("index:$index out of bound");
}
return data[index];
}