transports property

List<AuthenticatorTransport>? get transports

Implementation

_i2.List<_i3.AuthenticatorTransport>? get transports => ((_i4.getProperty(
      this,
      'transports',
    )) as _i2.List?)
        ?.cast()
        .map((i) => _i3.AuthenticatorTransportOptions.values.byName(i))
        .toList();
set transports (List<AuthenticatorTransport>? value)

Implementation

set transports(_i2.List<_i3.AuthenticatorTransport>? value) {
  _i4.setProperty(
    this,
    'transports',
    value?.map((i) => i.name).toList() ?? _i6.undefined,
  );
}