ContainsValidator<T> constructor

const ContainsValidator<T>(
  1. List<T> values
)

Constructs the instance of the validator.

The argument values must not be null.

Implementation

const ContainsValidator(this.values) : super();