apply method

(String, Map<String, Object?>) apply(
  1. P? p
)

Returns the SQL string and the mapped parameters for this command.

Implementation

(String, Map<String, Object?>) apply(P? p) {
  final map = _resolveParams<P>(params, p);
  return (sql, map);
}