acceptMyFollower method

Future<AmityFollowStatus> acceptMyFollower(
  1. String userId
)

Accept the pending follow request

Implementation

Future<AmityFollowStatus> acceptMyFollower(String userId) {
  return serviceLocator<AcceptFollowUsecase>().get(userId);
}