@@ -23,52 +23,52 @@ class ChartBarDataItem extends ChartDataItem {
2323
2424 /// Current touch area position during the animation.
2525 ///
26- /// Default to Offset.zero
26+ /// Defaults to Offset.zero
2727 Offset get currentTouchPos => _touch.currentPos;
2828
2929 /// Current touch area size during the animation.
3030 ///
31- /// Default to Size.zero
31+ /// Defaults to Size.zero
3232 Size get currentTouchSize => _touch.currentSize;
3333
3434 /// Current color during the animation.
3535 ///
36- /// Default to Colors.transparent
36+ /// Defaults to Colors.transparent
3737 Color get currentValueColor => _value.currentColor;
3838
3939 /// Current position during the animation.
4040 ///
41- /// Default to Offset.zero
41+ /// Defaults to Offset.zero
4242 Offset get currentValuePos => _value.currentPos;
4343
4444 /// Current size during the animation.
4545 ///
46- /// Default to Size.zero
46+ /// Defaults to Size.zero
4747 Size get currentValueSize => _value.currentSize;
4848
4949 /// Last touch area position on finish/stop animation.
5050 ///
51- /// Default to Offset.zero
51+ /// Defaults to Offset.zero
5252 Offset get lastTouchPos => _touch.lastPos;
5353
5454 /// Last touch area size on finish/stop animation.
5555 ///
56- /// Default to Size.zero
56+ /// Defaults to Size.zero
5757 Size get lastTouchSize => _touch.lastSize;
5858
5959 /// Last color on finish/stop animation.
6060 ///
61- /// Default to Colors.transparent
61+ /// Defaults to Colors.transparent
6262 Color get lastValueColor => _value.lastColor;
6363
6464 /// Last position on finish/stop animation.
6565 ///
66- /// Default to Offset.zero
66+ /// Defaults to Offset.zero
6767 Offset get lastValuePos => _value.lastPos;
6868
6969 /// Last size on finish/stop animation.
7070 ///
71- /// Default to Size.zero
71+ /// Defaults to Size.zero
7272 Size get lastValueSize => _value.lastSize;
7373
7474 /// Dispose all animations.
@@ -131,22 +131,22 @@ class _ChartBarDataItemTouch {
131131
132132 /// Current position during the animation.
133133 ///
134- /// Default to Offset.zero
134+ /// Defaults to Offset.zero
135135 Offset get currentPos => _pos.current;
136136
137137 /// Current size during the animation.
138138 ///
139- /// Default to Size.zero
139+ /// Defaults to Size.zero
140140 Size get currentSize => _size.current;
141141
142142 /// Last position on finish/stop animation.
143143 ///
144- /// Default to Offset.zero
144+ /// Defaults to Offset.zero
145145 Offset get lastPos => _pos.last;
146146
147147 /// Last size on finish/stop animation.
148148 ///
149- /// Default to Size.zero
149+ /// Defaults to Size.zero
150150 Size get lastSize => _size.last;
151151
152152 /// Dispose all animations.
@@ -193,32 +193,32 @@ class _ChartBarDataItemValue {
193193
194194 /// Current color during the animation.
195195 ///
196- /// Default to Colors.transparent
196+ /// Defaults to Colors.transparent
197197 Color get currentColor => _color.current;
198198
199199 /// Current position during the animation.
200200 ///
201- /// Default to Offset.zero
201+ /// Defaults to Offset.zero
202202 Offset get currentPos => _pos.current;
203203
204204 /// Current size during the animation.
205205 ///
206- /// Default to Size.zero
206+ /// Defaults to Size.zero
207207 Size get currentSize => _size.current;
208208
209209 /// Last color on finish/stop animation.
210210 ///
211- /// Default to Colors.transparent
211+ /// Defaults to Colors.transparent
212212 Color get lastColor => _color.last;
213213
214214 /// Last position on finish/stop animation.
215215 ///
216- /// Default to Offset.zero
216+ /// Defaults to Offset.zero
217217 Offset get lastPos => _pos.last;
218218
219219 /// Last size on finish/stop animation.
220220 ///
221- /// Default to Size.zero
221+ /// Defaults to Size.zero
222222 Size get lastSize => _size.last;
223223
224224 /// Dispose all animations.
0 commit comments