getCommentsByOwnerId static method

Future<List<PeamanComment>> getCommentsByOwnerId({
  1. required String ownerId,
  2. required String feedId,
  3. required PeamanCommentParent parent,
  4. MyQuery query(
    1. MyQuery
    )?,
})

Implementation

static Future<List<PeamanComment>> getCommentsByOwnerId({
  required final String ownerId,
  required final String feedId,
  required final PeamanCommentParent parent,
  final MyQuery Function(MyQuery)? query,
}) {
  PeamanCommonHelper.printListening(text: 'commentsByOwnerId');
  return FeedProvider().getCommentsByOwnerId(
    ownerId: ownerId,
    feedId: feedId,
    parent: parent,
    query: query,
  );
}