recent property

List<UDocProgress> get recent

Implementation

List<UDocProgress> get recent {
  final List<UDocProgress> list = _entries.values.toList()..sort((UDocProgress a, UDocProgress b) => b.updatedAt.compareTo(a.updatedAt));
  return list;
}