Connection constructor
const
Connection({})
Creates a new Connection instance.
The id is a unique identifier assigned by the ODBC engine.
The connectionString is the original ODBC connection string used
to establish this connection.
Implementation
const Connection({
required this.id,
required this.connectionString,
required this.createdAt,
this.isActive = false,
});