getItem method

dynamic getItem(
  1. int position
)

Implementation

dynamic getItem(int position){
  return items.getOrNull(position);
}