intersects method
Returns an Expression that is true when this column's geometry
intersects other — wraps ST_Intersects.
Implementation
Expression intersects(Geography other) => Expression(
'ST_Intersects($this, ST_GeogFromText(${EscapedExpression(other.toEwkt())}))',
);