operator == method

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

toString() の値を比較する。

Implementation

@override
bool operator ==(Object other) {
    if( other.runtimeType != runtimeType ) return false;
    final typeChecked = other as NonNullableObservable<VT>;
    return typeChecked.toString() == toString();
}