updateOsCallDisplay method

Future<int> updateOsCallDisplay({
  1. required int sessionId,
  2. required String displayName,
})

Updates the display name the system call UI (CallKit / ConnectionService) shows for a session's call.

Returns 0 on success, negative error code on failure.

Implementation

Future<int> updateOsCallDisplay({
  required int sessionId,
  required String displayName,
}) async {
  throw UnimplementedError('updateOsCallDisplay has not been implemented.');
}