unfollow method

Future<AmityFollowStatus> unfollow(
  1. String userId
)

Unfollow this Amity User by Current logged in user

Implementation

Future<AmityFollowStatus> unfollow(String userId) {
  return serviceLocator<UnfollowUsecase>().get(userId);
}