friendsFansSetFollowingReplurk function

Future<Base?> friendsFansSetFollowingReplurk(
  1. FriendsFansSetFollowing friendsFansSetFollowing
)

Implementation

Future<Base?> friendsFansSetFollowingReplurk(
    FriendsFansSetFollowing friendsFansSetFollowing) async {
  dynamic json = await _clientPost(PlurkEndpoints.friendsFansSetFollowingReplurk(),
      body: friendsFansSetFollowing.toBody());
  return (json == null) ? (null) : (Base.fromJson(json));
}