Skip to content

Commit f44c50c

Browse files
committed
fixes analyzing issue
1 parent 271d90c commit f44c50c

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

lib/src/animation_type_builder.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ class _AnimationTypeHoverBuilderState<T, V>
5353
final values = widget.properties.values;
5454
final index1 = pos.floor();
5555
final index2 = pos.ceil();
56-
final isListed = widget.properties.isCurrentListed;
5756
V listedValueFunction() => widget.lerp(
5857
widget.valueProvider(
5958
StyledToggleProperties(value: values[index1], index: index1)),

lib/src/animations.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ part of 'package:animated_toggle_switch/animated_toggle_switch.dart';
33
/// This class is a proxy for another animation.
44
///
55
/// It is used for passing animations in builders without exposing the real
6-
/// animation to users.
6+
/// animation to the user.
77
class _PrivateAnimation<T> extends Animation<T> {
88
final Animation<T> _parent;
99

0 commit comments

Comments
 (0)