DatabaseConnectionUser.delegate constructor
DatabaseConnectionUser.delegate(
- DatabaseConnectionUser other, {
- QueryExecutor? executor,
- StreamQueryStore? streamQueries,
Creates another DatabaseConnectionUser by referencing the implementation
from the other user.
Implementation
DatabaseConnectionUser.delegate(
DatabaseConnectionUser other, {
QueryExecutor? executor,
StreamQueryStore? streamQueries,
}) : connection = DatabaseConnection(
executor ?? other.connection.executor,
streamQueries: streamQueries ?? other.connection.streamQueries,
);