setFAQVisibility static method

  1. @Deprecated('This method was deprecated after v3.1.2, Use knowledgeBase.setVisibility() method instead.')
Future<Null> setFAQVisibility(
  1. bool visibility
)

Enables or disables the FAQs/the Knowledge base using the value provided for visibility. See knowledgeBase.setVisibility(type, shouldShow) in knowledgeBase

Implementation

@Deprecated(
    'This method was deprecated after v3.1.2, Use knowledgeBase.setVisibility() method instead.')
static Future<Null> setFAQVisibility(bool visibility) async {
  await _channel.invokeMethod('setFAQVisibility', visibility);
}