getFeedsBySearchKeyword static method

Future<List<PeamanFeed>> getFeedsBySearchKeyword({
  1. required String searchKeyword,
  2. MyQuery query(
    1. MyQuery
    )?,
})

Implementation

static Future<List<PeamanFeed>> getFeedsBySearchKeyword({
  required final String searchKeyword,
  final MyQuery Function(MyQuery)? query,
}) {
  PeamanCommonHelper.printListening(text: 'feedsBySearchKeyword');
  return FeedProvider().getFeedsBySearchKeyword(
    searchKeyword: searchKeyword,
    query: query,
  );
}