sessions property
A list of open window sessions for the foreign device, sorted from most recently to least recently modified session.
Implementation
List<Session> get sessions => _wrapped.sessions.toDart
.cast<$js.Session>()
.map((e) => Session.fromJS(e))
.toList();