setParameters method

  1. @override
Future<void> setParameters(
  1. String parameters
)

@nodoc

Provides technical preview functionalities or special customizations by configuring the SDK with JSON options.

The JSON options are not public by default. Agora is working on making commonly used JSON options public in a standard way.

Parameter parameters Sets the parameter as a JSON string in the specified format.

Implementation

@override
Future<void> setParameters(String parameters) {
  return _invokeMethod('setParameters', {
    'parameters': parameters,
  });
}