isFlaggedByMe method

Future<bool> isFlaggedByMe(
  1. String postId
)

check if post is flagged by me

Implementation

Future<bool> isFlaggedByMe(String postId) {
  return serviceLocator<PostIsFlaggedByMeUsecase>().get(postId);
}