operator == method

  • @override

bool operator == (Object other)

override

Implementation

@override
bool operator ==(Object other) =>
    identical(this, other) ||
    other is UnknownRawData &&
        deepEquals(data, other.data) &&
        deepEquals(handles, other.handles);