getDebugPath method
Implementation
@override
String getDebugPath() {
String p = join(
Directory.current.path,
'build',
'windows',
"x64",
'runner',
'Debug',
'data',
"flutter_assets\\packages\\tencent_im_sdk_plugin_desktop\\assets",
);
if (!Directory(p).existsSync()) {
print("dll not found");
}
return p;
}