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