operator == method

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

Is equal with T and id

Implementation

@override
bool operator ==(Object other) =>
    other is ReactterInstance<T?> && other.id == id;