IsList constructor

IsList({
  1. bool isOptional = false,
  2. required dynamic value,
  3. String? propertyName,
  4. int? maxSize,
  5. int? minSize,
  6. PropertyValidate nested(
    1. dynamic element
    )?,
})

Implementation

IsList(
    {this.isOptional = false,
    required this.value,
    this.propertyName,
    this.maxSize,
    this.minSize,
    this.nested});