setCallingBell method

Future<void> setCallingBell(
  1. String filePath
)

Set the ringtone (preferably shorter than 30s)

@param filePath Callee ringtone path

Implementation

Future<void> setCallingBell(String filePath) async {
  return await TUICallKitPlatform.instance.setCallingBell(filePath);
}