evaluateSerialized method

  1. @override
bool evaluateSerialized(
  1. dynamic other
)
override

Similar to evaluate, except other should be the serialized value of a field on the model.

This should be used to support comparisons with models that were generated prior to toMap() being added.

Implementation

@override
bool evaluateSerialized(dynamic other) => evaluate(other);