operator == method

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

Override Equality for Value Comparison

Implementation

@override
bool operator ==(Object other) =>
    identical(this, other) ||
    other is TTheme &&
        runtimeType == other.runtimeType &&
        primary == other.primary &&
        background == other.background &&
        foreground == other.foreground &&
        fontFamily == other.fontFamily;