Fixed an InheritedWidget doc typo (#25168)

This commit is contained in:
Hans Muller 2018-12-11 09:53:45 -08:00 committed by GitHub
parent 625a37b86a
commit f14055529b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1520,7 +1520,7 @@ abstract class ParentDataWidget<T extends RenderObjectWidget> extends ProxyWidge
/// final Color color; /// final Color color;
/// ///
/// static FrogColor of(BuildContext context) { /// static FrogColor of(BuildContext context) {
/// return context.inheritFromWidgetOfExactType(FrogColor); /// return context.inheritFromWidgetOfExactType(FrogColor) as FrogColor;
/// } /// }
/// ///
/// @override /// @override
@ -1531,8 +1531,8 @@ abstract class ParentDataWidget<T extends RenderObjectWidget> extends ProxyWidge
/// ///
/// The convention is to provide a static method `of` on the [InheritedWidget] /// The convention is to provide a static method `of` on the [InheritedWidget]
/// which does the call to [BuildContext.inheritFromWidgetOfExactType]. This /// which does the call to [BuildContext.inheritFromWidgetOfExactType]. This
/// allows the class to define its own fallback logic in the case of there not /// allows the class to define its own fallback logic in case there isn't
/// being a widget in scope. In the example above, the value returned will be /// a widget in scope. In the example above, the value returned will be
/// null in that case, but it could also have defaulted to a value. /// null in that case, but it could also have defaulted to a value.
/// ///
/// Sometimes, the `of` method returns the data rather than the inherited /// Sometimes, the `of` method returns the data rather than the inherited