debugParameters property

set debugParameters (List<Object?> parameters)

A list of parameters used in SqliteException.parametersToStatement for exceptions thrown on this statement.

This is only used for exceptions and does not bind values.

Implementation

set debugParameters(List<Object?> parameters) {
  _stmt.latestArguments = parameters;
}