OracleProfile constructor

OracleProfile({
  1. Map<String, String>? connectionAttributes,
  2. String? databaseService,
  3. String? hostname,
  4. String? password,
  5. int? port,
  6. String? username,
})

Implementation

OracleProfile({
  this.connectionAttributes,
  this.databaseService,
  this.hostname,
  this.password,
  this.port,
  this.username,
});