Ionic5 and AdMobFree

Hey,

I’m trying to add AdMob Free plugin to a Ionic 5 application (Angular + Capacitor) and I receive the following error:

[error] - ERROR Error: Uncaught (in promise): TypeError: undefined is not an object (evaluating 'AdMobFree.banner')

Here’s my code:

import { Plugins } from '@capacitor/core';
const { AdMobFree } = Plugins;
...
ngOnit() {
    const bannerConfig = {...};
    AdMobFree.banner.config(bannerConfig);
    AdMobFree.banner.prepare();
}