Documentation fix in StatefulWidget class (#10373)

Replace a misplaced StatelessWidget class with StatefulWidget class
This commit is contained in:
Fahad
2017-05-29 00:30:36 -04:00
committed by Ian Hickson
parent f437d025b8
commit 4a1e660a0d

View File

@@ -670,7 +670,7 @@ abstract class StatelessWidget extends Widget {
/// can be called to mutate it:
///
/// ```dart
/// class Frog extends StatelessWidget {
/// class Frog extends StatefulWidget {
/// const Frog({
/// Key key,
/// this.color: const Color(0xFF2DBD3A),