MatchingRule constructor

const MatchingRule({
  1. required String id,
  2. required String tag,
})

Implementation

const factory MatchingRule({
  /// ID of the filter rule that matched against the Tweet delivered.
  required String id,

  /// The tag label of the filter rule that matched against the
  /// Tweet delivered.
  required String tag,
}) = _MatchingRule;