unObserveProperty method

void unObserveProperty(
  1. int propertyId, {
  2. String? propertyName,
})

Implementation

void unObserveProperty(int propertyId, {String? propertyName}) {
  Library.libmpv.mpv_unobserve_property(
    ctx,
    0,
  );
  if (propertyName != null) {
    _observedProperties.remove(propertyName);
  }
}