@@ -14,7 +14,7 @@ class CssAnimationBuilder {
1414 CssAnimationBuilder (this .browserDetails) {}
1515 /**
1616 * Adds a temporary class that will be removed at the end of the animation
17- * @param className
17+ *
1818 */
1919 CssAnimationBuilder addAnimationClass (String className) {
2020 this .data.animationClasses.add (className);
@@ -23,7 +23,7 @@ class CssAnimationBuilder {
2323
2424 /**
2525 * Adds a class that will remain on the element after the animation has finished
26- * @param className
26+ *
2727 */
2828 CssAnimationBuilder addClass (String className) {
2929 this .data.classesToAdd.add (className);
@@ -32,7 +32,7 @@ class CssAnimationBuilder {
3232
3333 /**
3434 * Removes a class from the element
35- * @param className
35+ *
3636 */
3737 CssAnimationBuilder removeClass (String className) {
3838 this .data.classesToRemove.add (className);
@@ -41,7 +41,7 @@ class CssAnimationBuilder {
4141
4242 /**
4343 * Sets the animation duration (and overrides any defined through CSS)
44- * @param duration
44+ *
4545 */
4646 CssAnimationBuilder setDuration (num duration) {
4747 this .data.duration = duration;
@@ -50,7 +50,7 @@ class CssAnimationBuilder {
5050
5151 /**
5252 * Sets the animation delay (and overrides any defined through CSS)
53- * @param delay
53+ *
5454 */
5555 CssAnimationBuilder setDelay (num delay) {
5656 this .data.delay = delay;
@@ -59,8 +59,8 @@ class CssAnimationBuilder {
5959
6060 /**
6161 * Sets styles for both the initial state and the destination state
62- * @param from
63- * @param to
62+ *
63+ *
6464 */
6565 CssAnimationBuilder setStyles (
6666 Map <String , dynamic > from, Map <String , dynamic > to) {
@@ -69,7 +69,7 @@ class CssAnimationBuilder {
6969
7070 /**
7171 * Sets the initial styles for the animation
72- * @param from
72+ *
7373 */
7474 CssAnimationBuilder setFromStyles (Map <String , dynamic > from) {
7575 this .data.fromStyles = from;
@@ -78,7 +78,7 @@ class CssAnimationBuilder {
7878
7979 /**
8080 * Sets the destination styles for the animation
81- * @param to
81+ *
8282 */
8383 CssAnimationBuilder setToStyles (Map <String , dynamic > to) {
8484 this .data.toStyles = to;
@@ -87,7 +87,7 @@ class CssAnimationBuilder {
8787
8888 /**
8989 * Starts the animation and returns a promise
90- * @param element
90+ *
9191 */
9292 Animation start (dynamic element) {
9393 return new Animation (element, this .data, this .browserDetails);
0 commit comments