AudioParam constructor

AudioParam({
  1. required GraphObjectId paramId,
  2. required GraphObjectId nodeId,
  3. required GraphObjectId contextId,
  4. required ParamType paramType,
  5. required AutomationRate rate,
  6. required num defaultValue,
  7. required num minValue,
  8. required num maxValue,
})

Implementation

AudioParam(
    {required this.paramId,
    required this.nodeId,
    required this.contextId,
    required this.paramType,
    required this.rate,
    required this.defaultValue,
    required this.minValue,
    required this.maxValue});