when method

Self when(
  1. String field,
  2. Map<dynamic, Self Function(Self)> conditions
)

Implementation

Self when(String field, Map<dynamic, Self Function(Self)> conditions) {
  _dependsOn = field;
  _conditions[field] = conditions;
  return self;
}