operator == method

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

The equality operator.

Returns true if and only if this and other wrap the same WebAssembly.Memory object.

Implementation

@override
bool operator ==(Object other) =>
    other is Memory && other.jsObject == jsObject;