enableExtension abstract method
Future<void>
enableExtension({
- required String provider,
- required String extension,
- bool enable = true,
- MediaSourceType type = MediaSourceType.unknownMediaSource,
Enables or disables extensions.
providerThe name of the extension provider.extensionThe name of the extension.enableWhether to enable the extension: true : Enable the extension. false : Disable the extension.typeSource type of the extension. See MediaSourceType.
Returns When the method call succeeds, there is no return value; when fails, the AgoraRtcException exception is thrown. You need to catch the exception and handle it accordingly.
Implementation
Future<void> enableExtension(
{required String provider,
required String extension,
bool enable = true,
MediaSourceType type = MediaSourceType.unknownMediaSource});