recentEntities method

Future<List<DrishyaEntity>> recentEntities({
  1. RequestType? type,
  2. int count = 20,
})

Recent entities list

Implementation

Future<List<DrishyaEntity>> recentEntities(
        {RequestType? type, int count = 20}) =>
    _albums.recentEntities(type: type, count: count);