Commit ec27e045 authored by Ivan's avatar Ivan Committed by Michael Goderbauer

fix missing variable name (#28944)

parent dd944994
...@@ -20,7 +20,7 @@ import 'tween.dart'; ...@@ -20,7 +20,7 @@ import 'tween.dart';
/// 10.0 for the final 40%: /// 10.0 for the final 40%:
/// ///
/// ```dart /// ```dart
/// final Animation<double> = TweenSequence( /// final Animation<double> animation = TweenSequence(
/// <TweenSequenceItem<double>>[ /// <TweenSequenceItem<double>>[
/// TweenSequenceItem<double>( /// TweenSequenceItem<double>(
/// tween: Tween<double>(begin: 5.0, end: 10.0) /// tween: Tween<double>(begin: 5.0, end: 10.0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment