account property

AccountInfo? account

Implementation

AccountInfo? get account => _jsObject.account == null
    ? null
    : AccountInfo._fromJsObject(_jsObject.account!);
void account=(AccountInfo? value)

Account object that will be logged out of.

All tokens tied to this account will be cleared.

Implementation

set account(AccountInfo? value) => _jsObject.account = value?._jsObject;