setDynamicSuperProperties method

void setDynamicSuperProperties(
  1. Map<String, dynamic> f()
)

Sets the dynamic super properties.

f is a function that retuning valid properties. It will be called in every track to get the dynamic super properties.

Implementation

void setDynamicSuperProperties(Map<String, dynamic> f()) {
  this._getDynamicSuperProperties = f;
}