isPrivateChatDisabled method

  1. @override
Future<bool> isPrivateChatDisabled()
override

Implementation

@override
Future<bool> isPrivateChatDisabled() async {
  return await methodChannel
      .invokeMethod<bool>('isPrivateChatDisabled')
      .then<bool>((bool? value) => value ?? false);
}