operator == method

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

Override the equality operator.

Implementation

@override
bool operator ==(Object other) =>
    other is FlexCorePalette &&
    primary == other.primary &&
    secondary == other.secondary &&
    tertiary == other.tertiary &&
    neutral == other.neutral &&
    neutralVariant == other.neutralVariant &&
    error == other.error;