MatchProp<T> typedef

MatchProp<T> = void Function(Subject<T>)

A Function that fires checks against T using the Subject API

The Subject keeps the error states and is further processed

Implementation

typedef MatchProp<T> = void Function(Subject<T>);