GetReactionQueryBuilder.story constructor

GetReactionQueryBuilder.story({
  1. required String storyId,
})

get reaction for Story

Implementation

factory GetReactionQueryBuilder.story({required String storyId}) {
  return GetReactionQueryBuilder(
    serviceLocator<GetReactionUsecase>(),
    AmityReactionReferenceType.STORY,
    storyId,
  );
}