operator == method
Implementation
@override
bool operator ==(Object other) {
if (identical(this, other)) return true;
return other is MusicDuration &&
other.type == type &&
other.dots == dots;
}
@override
bool operator ==(Object other) {
if (identical(this, other)) return true;
return other is MusicDuration &&
other.type == type &&
other.dots == dots;
}