optOut method

Future<String> optOut(
  1. bool shouldOptOut
)

Implementation

Future<String> optOut(bool shouldOptOut) async {
  var arguments = <String, dynamic>{};
  arguments['shouldOptOut'] = shouldOptOut;

  final results = await _channel.invokeMethod(optOutName, arguments);
  return results;
}