isPrivateChatDisabled method
Determine whether private chat is disabled.
Return true if private chat is disabled, otherwise false.
Implementation
@override
Future<bool> isPrivateChatDisabled() async {
return await methodChannel
.invokeMethod<bool>('isPrivateChatDisabled')
.then<bool>((bool? value) => value ?? false);
}