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 (trackHeight != 6.0) modified.add('trackHeight');
if (thumbSize != 30.0) modified.add('thumbSize');
if (value != 50.0) modified.add('value');
if (min != 0.0) modified.add('min');
if (max != 100.0) modified.add('max');
if (stepSize != 0.0) modified.add('stepSize');
return modified;
}