callConfigFor method

Future<CallConfig> callConfigFor({
  1. required Uri url,
  2. String? token,
})

Fetches the call configuration for the room at url.

Implementation

Future<CallConfig> callConfigFor({required Uri url, String? token}) =>
    _platformBridge.callConfigFor(_native, url, token);