enableVirtualBackground method
Implementation
@override
Future<void> enableVirtualBackground({
required Uint8List backgroundImage,
double thresholdConfidence = 0.7,
}) async {
await _rtcManager.enableVirtualBackground(
backgroundImage: backgroundImage,
thresholdConfidence: thresholdConfidence,
);
}