getById method

Implementation

Future<ResponseItemDTO<NotificationDTO>> getById(String id) async {
  return await _repository!.getById(
    id,
  );
}