MySQLPacketHandshakeResponse41 constructor

MySQLPacketHandshakeResponse41({
  1. required int capabilityFlags,
  2. required int maxPacketSize,
  3. required int characterSet,
  4. required Uint8List authResponse,
  5. required String authPluginName,
  6. required String username,
  7. String? database,
})

Implementation

MySQLPacketHandshakeResponse41({
  required this.capabilityFlags,
  required this.maxPacketSize,
  required this.characterSet,
  required this.authResponse,
  required this.authPluginName,
  required this.username,
  this.database,
});