account property

AccountInfo? account

Implementation

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

AccountInfo obtained from a getAccount API.

Will be used in certain scenarios to generate login_hint if both loginHint and sid params are not provided.

Implementation

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