import { FirebaseMessaging } from '@awesome-cordova-plugins/firebase-messaging/ngx';
constructor(private firebaseMessaging: FirebaseMessaging) { }
...
this.firebaseMessaging.logEvent('page_view', {page: "dashboard"})
  .then((res: any) => console.log(res))
  .catch((error: any) => console.error(error));