This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -44,16 +44,13 @@ class SurfacePathMetrics extends IterableBase<ui.PathMetric>
4444
4545/// Maintains a single instance of computed segments for set of PathMetric
4646/// objects exposed through iterator.
47- ///
48- /// [resScale] controls the precision of measure when values > 1.
4947class _SurfacePathMeasure {
50- _SurfacePathMeasure (this ._path, this .forceClosed, { this .resScale = 1.0 } )
48+ _SurfacePathMeasure (this ._path, this .forceClosed)
5149 :
5250 // nextContour will increment this to the zero based index.
5351 _currentContourIndex = - 1 ,
5452 _pathIterator = PathIterator (_path, forceClosed);
5553
56- final double resScale;
5754 final PathRef _path;
5855 PathIterator _pathIterator;
5956 final List <_PathContourMeasure > _contours = < _PathContourMeasure > [];
Original file line number Diff line number Diff line change @@ -252,11 +252,11 @@ class IsolateNameServer {
252252SingletonFlutterWindow get window => engine.window;
253253
254254class FrameData {
255- const FrameData ._({ this .frameNumber = - 1 } );
255+ const FrameData ._();
256256
257- const FrameData .webOnly () : frameNumber = - 1 ;
257+ const FrameData .webOnly ();
258258
259- final int frameNumber;
259+ int get frameNumber => - 1 ;
260260}
261261
262262class GestureSettings {
You can’t perform that action at this time.
0 commit comments