create method

Implementation

Future<ResponseItemDTO> create({NotificationBody? body}) async {
  var response = await _http!.request(
    requestType: RequestType.post,
    path: '/dashboard/notifications',
    data: body,
  );

  return ResponseItemDTO(
    response: response,
    fromJson: null,
  );
}