deleteNotification method

Future<void> deleteNotification(
  1. String id
)

Implementation

Future<void> deleteNotification(String id) async {
  await dio.delete<dynamic>(endpoints.notificationById(id));
}