This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class Scene extends NativeFieldWrapperClass2 {
17
17
///
18
18
/// To create a Scene object, use a [SceneBuilder] .
19
19
@pragma ('vm:entry-point' )
20
- Scene ._ ();
20
+ Scene ();
21
21
22
22
/// Creates a raster image representation of the current state of the scene.
23
23
/// This is a slow operation that is performed on a background thread.
Original file line number Diff line number Diff line change @@ -1865,7 +1865,7 @@ class EngineLayer extends NativeFieldWrapperClass2 {
1865
1865
/// This class is created by the engine, and should not be instantiated
1866
1866
/// or extended directly.
1867
1867
@pragma ('vm:entry-point' )
1868
- EngineLayer ._ ();
1868
+ EngineLayer ();
1869
1869
}
1870
1870
1871
1871
/// A complex, one-dimensional subset of a plane.
@@ -4099,7 +4099,7 @@ class Picture extends NativeFieldWrapperClass2 {
4099
4099
///
4100
4100
/// To create a [Picture] , use a [PictureRecorder] .
4101
4101
@pragma ('vm:entry-point' )
4102
- Picture ._ ();
4102
+ Picture ();
4103
4103
4104
4104
/// Creates an image from this picture.
4105
4105
///
Original file line number Diff line number Diff line change @@ -820,7 +820,7 @@ class SemanticsUpdate extends NativeFieldWrapperClass2 {
820
820
///
821
821
/// To create a SemanticsUpdate object, use a [SemanticsUpdateBuilder] .
822
822
@pragma ('vm:entry-point' )
823
- SemanticsUpdate ._ ();
823
+ SemanticsUpdate ();
824
824
825
825
/// Releases the resources used by this semantics update.
826
826
///
You can’t perform that action at this time.
0 commit comments