configurationForUXCam static method
This call is available only for IOS portion of the SDK so not sure will work on Android.
Implementation
static Future<FlutterUxConfig> configurationForUXCam() async {
final Map<String, dynamic>? json =
await _channel.invokeMapMethod('configurationForUXCam');
return FlutterUxConfig.fromJson(json!);
}