getAssetAbsolutePath static method
Get the actual absolute path of the asset through the relative path of the asset
assetPathThe resource path configured in theflutter->assetsfield of pubspec.yaml, for example: assets/Sound_Horizon.mp3- Returns the actual absolute path of the asset
Implementation
static Future<String?> getAssetAbsolutePath(String assetPath) {
return RtcEngine.methodChannel
.invokeMethod('getAssetAbsolutePath', assetPath);
}