operator == method

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

Two ByteCollector instances are equal if their bytes are equal.

Implementation

@override
bool operator ==(Object other) =>
    identical(this, other) ||
    (other is ByteCollector && isEqual(other.bytes));