Skip to content

Commit

Permalink
refactor: rename variable in map function for full points in static a…
Browse files Browse the repository at this point in the history
…nalysis
  • Loading branch information
oriventi committed Dec 11, 2024
1 parent 9c97770 commit b11496a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/src/colorize.dart
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ class ColorizeAnimatedTextKit extends AnimatedTextKit {
TextDirection textDirection,
) =>
text
.map((_) => ColorizeAnimatedText(
_,
.map((str) => ColorizeAnimatedText(
str,
textAlign: textAlign,
textStyle: textStyle,
speed: speed,
Expand Down
4 changes: 2 additions & 2 deletions lib/src/fade.dart
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ class FadeAnimatedTextKit extends AnimatedTextKit {
double fadeOutBegin,
) =>
text
.map((_) => FadeAnimatedText(
_,
.map((str) => FadeAnimatedText(
str,
textAlign: textAlign,
textStyle: textStyle,
duration: duration,
Expand Down

0 comments on commit b11496a

Please sign in to comment.