getDebugPath method
Implementation
@override
String getDebugPath() {
String p = join(
Directory.current.path,
'build/macos/Build/Products/Debug/App.framework/Versions/Current',
'Resources',
'flutter_assets',
"packages",
"tencent_im_sdk_plugin_desktop",
"assets",
);
if (!Directory(p).existsSync()) {
print("dll not found");
}
return p;
}