update method

Implementation

Future<Result<CallMetadata>> update({
  Map<String, Object>? custom,
  StreamRingSettings? ring,
  StreamAudioSettings? audio,
  StreamVideoSettings? video,
  StreamScreenShareSettings? screenShare,
  StreamRecordingSettings? recording,
  StreamTranscriptionSettings? transcription,
  StreamBackstageSettings? backstage,
  StreamGeofencingSettings? geofencing,
}) {
  return _coordinatorClient.updateCall(
    callCid: callCid,
    custom: custom ?? {},
    ring: ring,
    audio: audio,
    video: video,
    screenShare: screenShare,
    recording: recording,
    transcription: transcription,
    backstage: backstage,
    geofencing: geofencing,
  );
}