ResolveValidator constructor

ResolveValidator({
  1. required IValidator? resolver(
    1. Map parentObject
    ),
  2. bool nullable = false,
  3. bool optional = false,
})

Implementation

ResolveValidator({
  required this.resolver,
  super.nullable,
  super.optional,
});