operator + abstract method

TestObject<C> operator +(
  1. TestRule<dynamic, Cell> other
)

Combines this rule with another rule to create a composite validation.

The resulting TestObject will evaluate both rules sequentially, returning false if either rule fails.

Example:

final composite = rule1 + rule2; // Both rules must pass

Implementation

TestObject<C> operator +(TestRule other);