ValidaMap<K, V> constructor

const ValidaMap<K, V>({
  1. int? minLength,
  2. int? maxLength,
  3. ValidaField<K>? eachKey,
  4. ValidaField<V>? eachValue,
  5. List<ValidaError> customValidate(
    1. Map<K, V>
    )?,
  6. String? customValidateName,
})

Implementation

const ValidaMap({
  this.minLength,
  this.maxLength,
  this.eachKey,
  this.eachValue,
  this.customValidate,
  this.customValidateName,
});