getAllKeys property

List<int> getAllKeys

Used to get all keys from a list of FavoritesEntity.

Implementation

List<int> get getAllKeys {
  List<int> tempKeyList = [];
  for (var entity in this) {
    tempKeyList.add(entity.key);
  }
  return tempKeyList;
}