MinValidator<T> constructor

const MinValidator<T>(
  1. T min
)

Constructs the instance of the validator.

The argument min must not be null.

Implementation

const MinValidator(this.min) : super();