setPrivacyUserAgree method

Future<void> setPrivacyUserAgree(
  1. bool open
)

设置 是否是测试设备: ture 是, false 否 ,仅支持 android

Implementation

Future<void> setPrivacyUserAgree(bool open) async {
  Map arguments = {};
  arguments['open'] = open;
  TradplusSdk.channel.invokeMethod('tp_setPrivacyUserAgree', arguments);
}