itemAt method

dynamic itemAt(
  1. int index
)

Implementation

dynamic itemAt(int index) =>
    index >= 0 && index < datasource.length ? datasource[index] : null;