operator == method

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

Uses url for equality comparisons only (unless the two objects are identical)

Overriding this in an implementation may cause FMTC logic to break, and is therefore not recommended.

Implementation

@override
@nonVirtual
bool operator ==(Object other) =>
    identical(this, other) || (other is BackendTile && url == other.url);