|
2 | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | 3 | // found in the LICENSE file. |
4 | 4 |
|
| 5 | +/// @docImport 'dart:ui'; |
| 6 | +library; |
| 7 | + |
5 | 8 | import 'dart:async'; |
6 | 9 | import 'dart:collection' show HashMap; |
7 | 10 | import 'dart:convert'; |
@@ -543,11 +546,11 @@ class _ScreenshotPaintingContext extends PaintingContext { |
543 | 546 | /// size of [renderBounds] multiplied by [pixelRatio]. |
544 | 547 | /// |
545 | 548 | /// To use [toImage], the render object must have gone through the paint phase |
546 | | - /// (i.e. [debugNeedsPaint] must be false). |
| 549 | + /// (i.e. [RenderObject.debugNeedsPaint] must be false). |
547 | 550 | /// |
548 | 551 | /// The [pixelRatio] describes the scale between the logical pixels and the |
549 | 552 | /// size of the output image. It is independent of the |
550 | | - /// [window.devicePixelRatio] for the device, so specifying 1.0 (the default) |
| 553 | + /// [FlutterView.devicePixelRatio] for the device, so specifying 1.0 (the default) |
551 | 554 | /// will give you a 1:1 mapping between logical pixels and the output pixels |
552 | 555 | /// in the image. |
553 | 556 | /// |
@@ -917,7 +920,7 @@ mixin WidgetInspectorService { |
917 | 920 | /// `value` reflects the newly updated service extension value. |
918 | 921 | /// |
919 | 922 | /// This will be called automatically for service extensions registered via |
920 | | - /// [registerBoolServiceExtension]. |
| 923 | + /// [BindingBase.registerBoolServiceExtension]. |
921 | 924 | void _postExtensionStateChangedEvent(String name, Object? value) { |
922 | 925 | postEvent( |
923 | 926 | 'Flutter.ServiceExtensionStateChanged', |
|
0 commit comments