operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

it is used to compare between styles.

Implementation

@override
bool operator ==(Object other) =>
    identical(this, other) ||
    other is RoundSliderStyle &&
        runtimeType == other.runtimeType &&
        stepLineCount == other.stepLineCount &&
        borderColor == other.borderColor &&
        borderStroke == other.borderStroke &&
        glowDistance == other.glowDistance &&
        lineMargin == other.lineMargin &&
        lineLengths == other.lineLengths &&
        lineColor == other.lineColor &&
        lineStroke == other.lineStroke &&
        friction == other.friction &&
        radius == other.radius &&
        visibleFactor == other.visibleFactor &&
        alignment == other.alignment &&
        glowColorStops == other.glowColorStops &&
        glowStops == other.glowStops;