operator == method

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

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);
}