operator == method
toString() の値を比較する。
Implementation
@override
bool operator ==(Object other) {
if( other.runtimeType != runtimeType ) return false;
final typeChecked = other as NonNullableObservable<VT>;
return typeChecked.toString() == toString();
}