DependencyRule constructor

DependencyRule({
  1. required String field,
  2. required ConditionOperator operator,
  3. String? message,
  4. dynamic compareValue,
})

Implementation

DependencyRule({
  required this.field,
  required this.operator,
  this.message,
  this.compareValue,
});