conditions property
Map of (K, V) -> (field, string condition to be evaluated on the field) E.g., ("age", "age > 18 && age < 60") entry triggers validation of field age with the given condition.
Map entries will be ANDed during validation.
Implementation
core.Map<core.String, core.String>? conditions;