OracleProfile constructor

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

Implementation

factory OracleProfile({
  $core.String? hostname,
  $core.int? port,
  $core.String? username,
  $core.String? databaseService,
  $core.Map<$core.String, $core.String>? connectionAttributes,
}) {
  final $result = create();
  if (hostname != null) {
    $result.hostname = hostname;
  }
  if (port != null) {
    $result.port = port;
  }
  if (username != null) {
    $result.username = username;
  }
  if (databaseService != null) {
    $result.databaseService = databaseService;
  }
  if (connectionAttributes != null) {
    $result.connectionAttributes.addAll(connectionAttributes);
  }
  return $result;
}