operator == method

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

Two entities are considered equal if they have the same tableName.

Implementation

@override
bool operator ==(Object other) =>
    other is ManagedEntity && tableName == other.tableName;