HandshakeHandler constructor

HandshakeHandler(
  1. String? _user,
  2. String? _password,
  3. int _maxPacketSize,
  4. int _characterSet, [
  5. String? db,
  6. bool useCompression = false,
  7. bool useSSL = false,
])

Implementation

HandshakeHandler(
    this._user, this._password, this._maxPacketSize, this._characterSet,
    [String? db, bool useCompression = false, bool useSSL = false])
    : _db = db,
      useCompression = useCompression,
      useSSL = useSSL,
      super(Logger('HandshakeHandler'));