unregisterSuperProperty static method

void unregisterSuperProperty(
  1. String superProperty
)

unregisterSuperProperty 删除一个指定的公共属性.

@param superProperty String 公共属性.

使用示例: SensorsAnalyticsFlutterPlugin.unregisterSuperProperty('key1');

Implementation

static void unregisterSuperProperty(String superProperty) {
  List<dynamic> params = [superProperty];
  _channel.invokeMethod('unregisterSuperProperty', params);
}