unsetSuperProperty method

void unsetSuperProperty(
  1. String property
)

Deletes a property from current super properties.

Implementation

void unsetSuperProperty(String property) {
  _channel.invokeMethod('unsetSuperProperty',
      <String, dynamic>{'property': property, 'appId': this._appId});
}