getReadsByCid method

  1. @override
Future<List<Read>> getReadsByCid(
  1. String cid
)

Get stored channel Reads by providing channel cid

Implementation

@override
Future<List<Read>> getReadsByCid(String cid) async {
  assert(_debugIsConnected, '');
  _logger.info('getReadsByCid');
  return db!.readDao.getReadsByCid(cid);
}