showOptOut method

  1. @override
dynamic showOptOut(
  1. bool showOptOut
)
override

If showOptOut is set to true, it will show an option for the end user to opt out of being surveyed. Default value is NO.

Implementation

@override
showOptOut(bool showOptOut) {
  methodChannel.invokeMethod('showOptOut', {
    'showOptOut': showOptOut,
  });
}