operator == method

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

Compares whether:

Implementation

@override
bool operator ==(Object other) =>
    other is Token &&
    term == other.term &&
    field == other.field &&
    termPosition == other.termPosition;