void deleteProperty(
String property
)

Removes property from the JavaScript object.

This is the equivalent of the delete operator in JavaScript.

Source

/**
 * Removes [property] from the JavaScript object.
 *
 * This is the equivalent of the `delete` operator in JavaScript.
 */
void deleteProperty(String property) native "JsObject_deleteProperty";