getComponentSpecificModifiedProperties method
Get set of component-specific modified properties. Called by getModifiedProperties() to include custom property tracking.
Implementation
@override
Set<String> getComponentSpecificModifiedProperties() {
final modified = <String>{};
if (value != 0.65) modified.add('value');
if (showPercentageText != false) modified.add('showPercentageText');
if (animateProgress != true) modified.add('animateProgress');
return modified;
}