operator == method
Override the equality operator.
Implementation
@override
bool operator ==(Object other) {
if (identical(this, other)) return true;
if (other.runtimeType != runtimeType) return false;
return other is FlexSchemeSurfaceColors &&
other.surface == surface &&
other.surfaceDim == surfaceDim &&
other.surfaceBright == surfaceBright &&
other.surfaceContainerLowest == surfaceContainerLowest &&
other.surfaceContainerLow == surfaceContainerLow &&
other.surfaceContainer == surfaceContainer &&
other.surfaceContainerHigh == surfaceContainerHigh &&
other.surfaceContainerHighest == surfaceContainerHighest &&
other.inverseSurface == inverseSurface &&
other.scaffoldBackground == scaffoldBackground &&
other.dialogBackground == dialogBackground;
}