InputValidate class

Main class for validating input data against a set of validation rules.

Provides static methods to validate nested map data structures using dot notation field paths with wildcard support.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

clearCache() → void
devLog(String message) → void
validate(Map<String, dynamic> input, Map<String, List<ValidationRule>> rules, {bool enableParallelValidation = true}) Future<Map<String, dynamic>>
Validates input data against the provided rules.