writeBioPublicKey method
Implementation
Future<void> writeBioPublicKey(String publicKey, String credentialId) async {
var store = StoreRef.main();
await store.record("biometric").put(db, {
"publicKey": publicKey,
"credentialId": credentialId,
});
}