Missing required parameters with FingerPrint AIO plugin

Hello guys, I’m getting this error when trying to run the fingerprint on my android that has biometric reading.
i run the commands:

ionic cordova plugin add cordova-plugin-fingerprint-aio
npm install @ionic-native/fingerprint-aio

I declared in my module

import { FingerprintAIO } from '@ionic-native/fingerprint-aio/ngx';

  providers: [
    FingerprintAIO
  ]

in my ts file this is the code.

import { FingerprintAIO, FingerprintOptions } from '@ionic-native/fingerprint-aio/ngx';
  constructor(
    private faio: FingerprintAIO, 
  ) { }

 this.faio.isAvailable().then((reslt) => {

      this.faio.show({
      }).then((reslt) => {
        alert('teste')
      }).catch(error => {
        alert(JSON.stringify(error))
      })

    }).catch(error => {
      alert(JSON.stringify(error))
    })

After that i initiate my app and the bellow msg send o my smarthphoe

{"message":'Missing required parameters"}

Anyone knows whats happen???