enableExtension abstract method
Future<void>
enableExtension({
- required String provider,
- required String extension,
- bool enable = true,
- MediaSourceType type = MediaSourceType.unknownMediaSource,
Enables or disables extensions.
provider
The name of the extension provider.extension
The name of the extension.enable
Whether to enable the extension: true : Enable the extension. false : Disable the extension.type
Source 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});