operator == method
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;