EachRule<T> constructor

EachRule<T>(
  1. List<Rule<T>> _ruleList, {
  2. String? validationMessage,
  3. String concatenator(
    1. List<String?>
    ) = joinWithNewLine,
})

The default constructor

Implementation

EachRule(
  this._ruleList, {
  String? validationMessage,
  this.concatenator = joinWithNewLine,
}) : super(validationMessage);