operator == method

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

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

Implementation

@override
bool operator ==(dynamic other) {
  return tableName == other.tableName;
}