lastModified property

int get lastModified

The time when the window or tab was closed or modified, represented in milliseconds since the epoch.

Implementation

int get lastModified => _wrapped.lastModified;
set lastModified (int v)

Implementation

set lastModified(int v) {
  _wrapped.lastModified = v;
}