accountStatus property

AccountStatus? get accountStatus

A status of the primary account signed into a profile whose ProfileUserInfo should be returned. Defaults to SYNC account status.

Implementation

AccountStatus? get accountStatus =>
    _wrapped.accountStatus?.let(AccountStatus.fromJS);
set accountStatus (AccountStatus? v)

Implementation

set accountStatus(AccountStatus? v) {
  _wrapped.accountStatus = v?.toJS;
}