setAutoShowingEnabled static method

Future<void> setAutoShowingEnabled(
  1. bool isEnabled
)

Sets whether auto surveys showing are enabled or not. isEnabled A boolean to indicate whether the surveys auto showing are enabled or not.

Implementation

static Future<void> setAutoShowingEnabled(bool isEnabled) async {
  final List<dynamic> params = <dynamic>[isEnabled];
  await _channel.invokeMethod<Object>(
      'setAutoShowingSurveysEnabled:', params);
}