operator method
- dynamic other
Implementation
bool operator(other) {
if (other is ClassDefinition) {
var otherClassDef = other;
return isSubsetOf(otherClassDef) && otherClassDef.isSubsetOf(this);
}
return false;
}
bool operator(other) {
if (other is ClassDefinition) {
var otherClassDef = other;
return isSubsetOf(otherClassDef) && otherClassDef.isSubsetOf(this);
}
return false;
}