setNoAttenuationFlags method

FutureOr<void> setNoAttenuationFlags(
  1. NSArray<NSString> flags
)

@detail api @author chuzhongtao @brief Set the flags to mark the user groups, within which the users talk without attenuation.
In the RTC room, if the flags of the users intersects with each other, the users talk without attenuation.
For example, the user is a member of multiple teams, and teammates of the same team talks without attentuation. You can set the flag for each team, and includes the flags of the user's teams in the user's flags. @param flags Array of flags.

Implementation

FutureOr<void> setNoAttenuationFlags(NSArray<NSString> flags) async {
  return await nativeCall('setNoAttenuationFlags:', [flags]);
}