startTime property
double?
get
startTime
Limit results to those visited after this date, represented in milliseconds since the epoch. If not specified, this defaults to 24 hours in the past.
Implementation
double? get startTime => _wrapped.startTime;
set
startTime
(double? v)
Implementation
set startTime(double? v) {
_wrapped.startTime = v;
}