getSql method

String getSql(
  1. P? p
)

Returns the SQL string for this command. Subclasses can override this to generate SQL based on the parameters p.

Implementation

String getSql(P? p) => apply(p).$1;