getFollowInfo method

Future<AmityUserFollowInfo> getFollowInfo(
  1. String userId
)

Get Follow info for user Id

Implementation

Future<AmityUserFollowInfo> getFollowInfo(String userId) {
  return serviceLocator<GetUserFollowInfoUsecase>().get(userId);
}