operator == method

bool operator ==(
  1. Object other
)
inherited

properties based deep equality check

Implementation

operator ==(Object other) =>
    identical(this, other) ||
    (other is BaseOptions &&
        runtimeType == other.runtimeType &&
        const ListEquality<Object?>(
          DeepCollectionEquality(),
        ).equals(
          other.properties,
          properties,
        ));