isEquivalentTo method
Check if two connection styles are equivalent This is used for caching decisions and theme comparisons
Implementation
bool isEquivalentTo(ConnectionStyle other) {
return runtimeType == other.runtimeType && id == other.id;
}
Check if two connection styles are equivalent This is used for caching decisions and theme comparisons
bool isEquivalentTo(ConnectionStyle other) {
return runtimeType == other.runtimeType && id == other.id;
}