optOut method
Implementation
Future<String> optOut(bool shouldOptOut) async {
var arguments = <String, dynamic>{};
arguments['shouldOptOut'] = shouldOptOut;
final results = await _channel.invokeMethod(optOutName, arguments);
return results;
}