Partitioning<T> constructor

Partitioning<T>({
  1. required StreamNode<T> matches,
  2. required StreamNode<T> nonMatches,
  3. String? name,
})

Implementation

Partitioning({required this.matches, required this.nonMatches, String? name})
    : super(name: name);