value property

T value
final

The value that passed all validation checks.

This is the original value you provided to validation. When you chain validations using ValidatedOps.check, the value remains unchanged but validations are applied to it. Extract this value once all validations pass using unwrapOrNull or asResult.

Implementation

final T value;