getAt method

Future getAt(
  1. int index
)

The object stored at an idex

Implementation

Future<dynamic> getAt(int index) async {
  List<dynamic> list = await getAll();

  if (list.length <= index) return null;

  return list[index];
}