alertsRemoveNotification function

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

Implementation

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