operator == method
Checks if two PainterControllerValue objects are equal or not.
Implementation
@override
bool operator ==(Object other) {
return other is PainterControllerValue &&
(const ListEquality().equals(_drawables, other._drawables) &&
background == other.background &&
settings == other.settings &&
selectedObjectDrawable == other.selectedObjectDrawable);
}