isValid property

bool get isValid

Whether value passes the optional validator.

Implementation

bool get isValid => validator == null || validator!(value);