decode static method
Implementation
static AuthenticatorSelection decode(Object result) {
result as List<Object?>;
return AuthenticatorSelection(
authenticatorAttachment: result[0]! as String,
requireResidentKey: result[1]! as bool,
residentKey: result[2]! as String,
userVerification: result[3]! as String,
);
}