sendToAll method

Future<ResponseItemDTO> sendToAll({
  1. NotificationBody? body,
})

Implementation

Future<ResponseItemDTO> sendToAll({NotificationBody? body}) async {
  return await _repository!.sendToAll(
    body: body,
  );
}