You can listen to the API requests of the Flutter plug-in dio in this window. There is no need to use the print function to print the logs related to dio
Add a dependency in the pubspec. yaml under the root directory of your Flutter Project
dd_check_plugin: ^laset_versionrun
flutter pub getConnect the FlutterVersionCheckX plug-in at the entrance of your main function
Like this
void main() {
await DdCheckPlugin().init(Dio(), initHost: '192.168.199.75', port: 9999, conectSuccess: (Socket s) {
print('Connection succeeded:${s.address}');
});
}InitHost can automatically recognize your local IP address
| Attribute | Introduce |
|---|---|
| initHost | IP address of your development tool computer |
| port | The listening port is generally 9999 by default |
| conectSuccess | Connection success callback |
| customCoverterResponseData | User-defined parsing of data sent to the idea side |
After saving, you need to restart the idea to take effect


