MatchedRulesFilter constructor

MatchedRulesFilter({
  1. int? tabId,
  2. double? minTimeStamp,
})

Implementation

MatchedRulesFilter({
  /// If specified, only matches rules for the given tab. Matches rules not
  /// associated with any active tab if set to -1.
  int? tabId,

  /// If specified, only matches rules after the given timestamp.
  double? minTimeStamp,
}) : _wrapped = $js.MatchedRulesFilter(
        tabId: tabId,
        minTimeStamp: minTimeStamp,
      );