List Item
dynamic elementAt(Object list, int index) => (list is List && list.isNotEmpty && !index.isNegative && index < list.length) ? list[index] : null;