generateMeta method
Collects specific data according to settings and generate meta from it as Base64 string.
You can use this meta to hit Fazpass API endpoint. Calling this method will automatically launch
local authentication (biometric / password). Any rules that have been set in method Fazpass.setSettings
will be applied according to the accountIndex
parameter.
Throws any FazpassException if an error occurred.
Implementation
@override
Future<String> generateMeta({int accountIndex=-1}) {
return FlutterTrustedDeviceV2PlatformInterface.instance.generateMeta(accountIndex: accountIndex);
}