operator == method

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

Returns true if this Double equals the specified object.

Implementation

@override
bool operator ==(Object other) {
  if (identical(this, other)) return true;
  return other is Double && _value == other._value;
}