alertsDenyFriendship function

Future<Base?> alertsDenyFriendship(
  1. UserID userID
)

Implementation

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