@@ -50,34 +50,24 @@ base class SceneNode extends NativeFieldWrapperClass1 {
5050 return result;
5151 }
5252
53- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
54- // ignore: public_member_api_docs
5553 static SceneNodeValue fromTransform (Float64List matrix4) {
5654 final SceneNode sceneNode = SceneNode ._create ();
5755 sceneNode._initFromTransform (matrix4);
5856 return SceneNodeValue .fromValue (sceneNode);
5957 }
6058
61- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
62- // ignore: public_member_api_docs
6359 void addChild (SceneNode sceneNode) {
6460 _addChild (sceneNode);
6561 }
6662
67- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
68- // ignore: public_member_api_docs
6963 void setTransform (Float64List matrix4) {
7064 _setTransform (matrix4);
7165 }
7266
73- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
74- // ignore: public_member_api_docs
7567 void setAnimationState (String animationName, bool playing, bool loop, double weight, double timeScale) {
7668 _setAnimationState (animationName, playing, loop, weight, timeScale);
7769 }
7870
79- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
80- // ignore: public_member_api_docs
8171 void seekAnimation (String animationName, double time) {
8272 _seekAnimation (animationName, time);
8373 }
@@ -136,45 +126,32 @@ base class SceneNode extends NativeFieldWrapperClass1 {
136126
137127 /// Returns a fresh instance of [SceneShader] .
138128 SceneShader sceneShader () => SceneShader ._(this , debugName: _debugName);
139-
140129}
141130
142- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
143- // ignore: public_member_api_docs
144131class SceneNodeValue {
145132 SceneNodeValue ._(this ._future, this ._value) {
146133 _future? .then ((SceneNode result) => _value = result);
147134 }
148135
149- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
150- // ignore: public_member_api_docs
151136 static SceneNodeValue fromFuture (Future <SceneNode > future) {
152137 return SceneNodeValue ._(future, null );
153138 }
154139
155- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
156- // ignore: public_member_api_docs
157140 static SceneNodeValue fromValue (SceneNode value) {
158141 return SceneNodeValue ._(null , value);
159142 }
160143
161144 final Future <SceneNode >? _future;
162145 SceneNode ? _value;
163146
164- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
165- // ignore: public_member_api_docs
166147 bool get isComplete {
167148 return _value != null ;
168149 }
169150
170- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
171- // ignore: public_member_api_docs
172151 Future <SceneNode >? get future {
173152 return _future;
174153 }
175154
176- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
177- // ignore: public_member_api_docs
178155 SceneNode ? get value {
179156 return _value;
180157 }
@@ -209,8 +186,6 @@ base class SceneShader extends Shader {
209186 // ignore: unused_field
210187 final String ? _debugName;
211188
212- // TODO(matanlurey): have original authors document; see https://github.com/flutter/flutter/issues/151917.
213- // ignore: public_member_api_docs
214189 void setCameraTransform (Float64List matrix4) {
215190 _setCameraTransform (matrix4);
216191 }
0 commit comments