setVirtualBackground method
Implementation
Future<void> setVirtualBackground({
String? path,
int? backgroundType,
int? blurLevel,
int? color,
bool? enable,
}) async {
await TRTC.setVirtualBackground(
path: path,
backgroundType: backgroundType,
blurLevel: blurLevel,
color: color,
enable: enable,
);
}