ChainedFinder constructor Null safety

ChainedFinder(
  1. Finder parent
)

Create a Finder chained against the candidates of another Finder.

Implementation

ChainedFinder(this.parent) : assert(parent != null);