timeStamp property

double timeStamp

The time the rule was matched. Timestamps will correspond to the Javascript convention for times, i.e. number of milliseconds since the epoch.

Implementation

double get timeStamp => _wrapped.timeStamp;
void timeStamp=(double v)

Implementation

set timeStamp(double v) {
  _wrapped.timeStamp = v;
}