IsList constructor
IsList({
- bool isOptional = false,
- required dynamic value,
- String? propertyName,
- int? maxSize,
- int? minSize,
- PropertyValidate nested(
- dynamic element
Implementation
IsList(
{this.isOptional = false,
required this.value,
this.propertyName,
this.maxSize,
this.minSize,
this.nested});