authenticatorAttachment property

AuthenticatorAttachment? get authenticatorAttachment

Implementation

_i3.AuthenticatorAttachment? get authenticatorAttachment =>
    switch (_i4.getProperty(
      this,
      'authenticatorAttachment',
    )) {
      _i2.String name =>
        _i3.AuthenticatorAttachmentOptions.values.byName(name),
      _ => null
    };
set authenticatorAttachment (AuthenticatorAttachment? value)

Implementation

set authenticatorAttachment(_i3.AuthenticatorAttachment? value) {
  _i4.setProperty(
    this,
    'authenticatorAttachment',
    value?.name ?? _i6.undefined ?? _i6.undefined,
  );
}