call method

String? call(
  1. Object? value
)

Valid - returns null - if value is equal to the given reference value.

The == operator is used for comparison.

Implementation

String? call(Object? value) => value == _to() ? null : _diff;