adapters/socket_io library
⚠️ DEPRECATED — This file is no longer shipped with flutter_blackbox.
Since v0.3.0, concrete adapter implementations are generated directly into your project by the CLI tool. This keeps the package dependency-free.
Migration
-
Run the CLI to generate adapters:
dart run flutter_blackbox:init --generateThis creates
lib/blackbox_adapters.dartwith only the adapters your project actually needs. -
Replace this import:
// Before (v0.2.x) import 'package:flutter_blackbox/adapters/socket_io.dart'; // After (v0.3.0+) import 'blackbox_adapters.dart'; // generated file -
Remove this import from your code — it is now a no-op.