unsetSuperProperty method
删除某个公共事件属性.
属性名称Implementation
@override
Future<void> unsetSuperProperty(String properties) async {
try {
methodChannel.invokeMethod('unsetSuperProperty', {
'properties': properties,
});
} on PlatformException catch (e) {
print('unsetSuperProperty fail: ${e.message}');
}
}