DBCommand constructor

DBCommand(
  1. String host,
  2. int port,
  3. String user,
  4. String pass,
  5. String db,
  6. String software,
  7. List<SQL> sqls, {
  8. Map<String, dynamic>? properties,
  9. String? id,
})

Implementation

DBCommand(this.host, this.port, this.user, this.pass, this.db, this.software,
    this.sqls,
    {Map<String, dynamic>? properties, String? id})
    : properties = properties ?? {},
      id = id?.trim() ?? '';