toggleMuteUnmuteGroupText method
The text for "Mute Group"/"Unmute Group" based on the value of isMuted.
Implementation
@override
String toggleMuteUnmuteGroupText({required bool isMuted}) {
if (isMuted) {
return 'Dempen groep opheffen';
} else {
return 'Groep dempen';
}
}