PreparedStatement.internal constructor
PreparedStatement.internal({})
Internal constructor used by Database.prepare. Application code should not call this directly.
Implementation
PreparedStatement.internal({
required Database db,
required Statement stmt,
required this.sql,
required this.positionalCount,
required this.namedParams,
}) : _db = db,
_stmt = stmt;