isChatDisabled method

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

Implementation

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