setMakeup method Null safety

Future<void> setMakeup(
  1. String name
)

Set the makeup effect.

String name - The name of the makeup effect, used to select a predefined makeup effect.

Precautions: Use after initializing ZegoEffects.

Applicable version: >= 2.1.0

Implementation

Future<void> setMakeup(String name) async {
  return await _channel.invokeMethod('setMakeup', {'name': name});
}