and method

Expression and(
  1. Expression other
)

========================================================================= OPERATORS AS FLUENT METHODS

Returns the result of this && other.

Implementation

/// Returns the result of `this` `&&` [other].
Expression and(Expression other) =>
    Expression([this, Space(), Code('&&'), Space(), other]);