| OLD | NEW |
| (Empty) | |
| 1 |
| 2 class AudioParam native "*AudioParam" { |
| 3 |
| 4 num defaultValue; |
| 5 |
| 6 num maxValue; |
| 7 |
| 8 num minValue; |
| 9 |
| 10 String name; |
| 11 |
| 12 int units; |
| 13 |
| 14 num value; |
| 15 |
| 16 void cancelScheduledValues(num startTime) native; |
| 17 |
| 18 void exponentialRampToValueAtTime(num value, num time) native; |
| 19 |
| 20 void linearRampToValueAtTime(num value, num time) native; |
| 21 |
| 22 void setTargetValueAtTime(num targetValue, num time, num timeConstant) native; |
| 23 |
| 24 void setValueAtTime(num value, num time) native; |
| 25 |
| 26 void setValueCurveAtTime(Float32Array values, num time, num duration) native; |
| 27 |
| 28 var dartObjectLocalStorage; |
| 29 |
| 30 String get typeName() native; |
| 31 } |
| OLD | NEW |