setCallingBell method

Future<void> setCallingBell(
  1. String assetName
)

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);
}