operator == method

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

Fallback equality and hashing, override these when possible to optimize performance

Implementation

@override
bool operator ==(Object other) {
  if (identical(this, other)) return true;

  return other is MeiliBooleanValueExpression && other.value == value;
}