isValueChanged property

bool isValueChanged

whether value changed after initialized

unlike FormeState.isValueChanged , this method is compare snapshot value and initialValue

Implementation

bool get isValueChanged =>
    _snapshots.any((element) => element.isValueChanged);