setCallingBell method
Set the ringtone (preferably shorter than 30s)
First introduce the ringtone resource into the project Then set the resource as a ringtone
@param filePath Callee ringtone path
Implementation
Future<void> setCallingBell(String assetName) async {
return await CallManager.instance.setCallingBell(assetName);
}