friendsFansGetFollowingByOffset function

Future<List<User>?> friendsFansGetFollowingByOffset(
  1. FriendsFansGetFollowingByOffset friendsFansGetFollowingByOffset
)

Implementation

Future<List<User>?> friendsFansGetFollowingByOffset(
    FriendsFansGetFollowingByOffset friendsFansGetFollowingByOffset) async {
  List? json = await _clientPost(
      PlurkEndpoints.friendsFansGetFollowingByOffset(),
      body: friendsFansGetFollowingByOffset.toBody());
  if (json == null) {
    return null;
  } else {
    List<User> returnList = json.map((e) => User.fromJson(e)).toList();
    return returnList;
  }
}