MySQLColumnDefinitionPacket constructor

MySQLColumnDefinitionPacket({
  1. required String catalog,
  2. required String schema,
  3. required String table,
  4. required String orgTable,
  5. required String name,
  6. required String orgName,
  7. required int charset,
  8. required int columnLength,
  9. required MySQLColumnType type,
})

Implementation

MySQLColumnDefinitionPacket({
  required this.catalog,
  required this.schema,
  required this.table,
  required this.orgTable,
  required this.name,
  required this.orgName,
  required this.charset,
  required this.columnLength,
  required this.type,
});