diff --git a/examples/catalog/lib/custom_a11y_traversal.dart b/examples/catalog/lib/custom_a11y_traversal.dart index ef651027ee..6195d23f06 100644 --- a/examples/catalog/lib/custom_a11y_traversal.dart +++ b/examples/catalog/lib/custom_a11y_traversal.dart @@ -61,14 +61,15 @@ class RowColumnTraversal extends StatelessWidget { /// A Button class that wraps an [IconButton] with a [RowColumnTraversal] to /// set its traversal order. class SpinnerButton extends StatelessWidget { - const SpinnerButton( - {Key key, - this.onPressed, - this.icon, - this.rowOrder, - this.columnOrder, - this.field, - this.increment}) : super(key: key); + const SpinnerButton({ + Key key, + this.onPressed, + this.icon, + this.rowOrder, + this.columnOrder, + this.field, + this.increment, + }) : super(key: key); final VoidCallback onPressed; final IconData icon; diff --git a/examples/catalog/test/custom_semantics_test.dart b/examples/catalog/test/custom_semantics_test.dart index 73de657f3a..2ff0a38abd 100644 --- a/examples/catalog/test/custom_semantics_test.dart +++ b/examples/catalog/test/custom_semantics_test.dart @@ -91,7 +91,8 @@ void main() { }); } -void expectAdjustable(SemanticsNode node, { +void expectAdjustable( + SemanticsNode node, { bool hasIncreaseAction = true, bool hasDecreaseAction = true, String label = '', diff --git a/examples/flutter_gallery/lib/demo/material/date_and_time_picker_demo.dart b/examples/flutter_gallery/lib/demo/material/date_and_time_picker_demo.dart index e2b465124b..9dda962c51 100644 --- a/examples/flutter_gallery/lib/demo/material/date_and_time_picker_demo.dart +++ b/examples/flutter_gallery/lib/demo/material/date_and_time_picker_demo.dart @@ -16,7 +16,8 @@ class _InputDropdown extends StatelessWidget { this.labelText, this.valueText, this.valueStyle, - this.onPressed }) : super(key: key); + this.onPressed, + }) : super(key: key); final String labelText; final String valueText; diff --git a/examples/flutter_gallery/lib/demo/shrine/expanding_bottom_sheet.dart b/examples/flutter_gallery/lib/demo/shrine/expanding_bottom_sheet.dart index 3290a22e09..614c67687d 100644 --- a/examples/flutter_gallery/lib/demo/shrine/expanding_bottom_sheet.dart +++ b/examples/flutter_gallery/lib/demo/shrine/expanding_bottom_sheet.dart @@ -71,7 +71,8 @@ Animation _getEmphasizedEasingAnimation({ @required T peak, @required T end, @required bool isForward, - @required Animation parent}) { + @required Animation parent, +}) { Curve firstCurve; Curve secondCurve; double firstWeight; diff --git a/examples/flutter_gallery/lib/demo/video_demo.dart b/examples/flutter_gallery/lib/demo/video_demo.dart index 2c71c07db6..66d78410a1 100644 --- a/examples/flutter_gallery/lib/demo/video_demo.dart +++ b/examples/flutter_gallery/lib/demo/video_demo.dart @@ -50,8 +50,11 @@ class VideoCard extends StatelessWidget { @override Widget build(BuildContext context) { - Widget fullScreenRoutePageBuilder(BuildContext context, - Animation animation, Animation secondaryAnimation) { + Widget fullScreenRoutePageBuilder( + BuildContext context, + Animation animation, + Animation secondaryAnimation, + ) { return _buildFullScreenVideo(); } diff --git a/examples/flutter_gallery/lib/gallery/backdrop.dart b/examples/flutter_gallery/lib/gallery/backdrop.dart index fdfacbd8b5..974e6afee1 100644 --- a/examples/flutter_gallery/lib/gallery/backdrop.dart +++ b/examples/flutter_gallery/lib/gallery/backdrop.dart @@ -24,7 +24,8 @@ final Animatable _kFrontHeadingBevelRadius = BorderRadiusTween( ); class _TappableWhileStatusIs extends StatefulWidget { - const _TappableWhileStatusIs(this.status, { + const _TappableWhileStatusIs( + this.status, { Key key, this.controller, this.child, diff --git a/examples/layers/rendering/src/sector_layout.dart b/examples/layers/rendering/src/sector_layout.dart index 0db5f12e51..3767295a18 100644 --- a/examples/layers/rendering/src/sector_layout.dart +++ b/examples/layers/rendering/src/sector_layout.dart @@ -57,9 +57,10 @@ class SectorDimensions { const SectorDimensions({ this.deltaRadius = 0.0, this.deltaTheta = 0.0 }); factory SectorDimensions.withConstraints( - SectorConstraints constraints, - { double deltaRadius = 0.0, double deltaTheta = 0.0, } - ) { + SectorConstraints constraints, { + double deltaRadius = 0.0, + double deltaTheta = 0.0, + }) { return SectorDimensions( deltaRadius: constraints.constrainDeltaRadius(deltaRadius), deltaTheta: constraints.constrainDeltaTheta(deltaTheta), @@ -554,7 +555,8 @@ class RenderBoxToRenderSectorAdapter extends RenderBox with RenderObjectWithChil } class RenderSolidColor extends RenderDecoratedSector { - RenderSolidColor(this.backgroundColor, { + RenderSolidColor( + this.backgroundColor, { this.desiredDeltaRadius = double.infinity, this.desiredDeltaTheta = kTwoPi, }) : super(BoxDecoration(color: backgroundColor)); diff --git a/packages/flutter/lib/src/foundation/binding.dart b/packages/flutter/lib/src/foundation/binding.dart index c72a5aae58..57284741bf 100644 --- a/packages/flutter/lib/src/foundation/binding.dart +++ b/packages/flutter/lib/src/foundation/binding.dart @@ -140,7 +140,7 @@ abstract class BindingBase { registerServiceExtension( name: 'saveCompilationTrace', callback: (Map parameters) async { - return { + return { 'value': ui.saveCompilationTrace(), }; }, diff --git a/packages/flutter/lib/src/foundation/diagnostics.dart b/packages/flutter/lib/src/foundation/diagnostics.dart index 3ee6b4eaae..c4752bff93 100644 --- a/packages/flutter/lib/src/foundation/diagnostics.dart +++ b/packages/flutter/lib/src/foundation/diagnostics.dart @@ -1045,7 +1045,9 @@ class MessageProperty extends DiagnosticsProperty { /// message is stored as the description. /// /// The [name], `message`, and [level] arguments must not be null. - MessageProperty(String name, String message, { + MessageProperty( + String name, + String message, { DiagnosticLevel level = DiagnosticLevel.info, }) : assert(name != null), assert(message != null), @@ -1063,7 +1065,9 @@ class StringProperty extends DiagnosticsProperty { /// Create a diagnostics property for strings. /// /// The [showName], [quoted], and [level] arguments must not be null. - StringProperty(String name, String value, { + StringProperty( + String name, + String value, { String description, String tooltip, bool showName = true, @@ -1119,7 +1123,8 @@ class StringProperty extends DiagnosticsProperty { } abstract class _NumProperty extends DiagnosticsProperty { - _NumProperty(String name, + _NumProperty( + String name, T value, { String ifNull, this.unit, @@ -1137,7 +1142,8 @@ abstract class _NumProperty extends DiagnosticsProperty { level: level, ); - _NumProperty.lazy(String name, + _NumProperty.lazy( + String name, ComputePropertyValueCallback computeValue, { String ifNull, this.unit, @@ -1190,7 +1196,9 @@ class DoubleProperty extends _NumProperty { /// If specified, [unit] describes the unit for the [value] (e.g. px). /// /// The [showName] and [level] arguments must not be null. - DoubleProperty(String name, double value, { + DoubleProperty( + String name, + double value, { String ifNull, String unit, String tooltip, @@ -1249,7 +1257,9 @@ class IntProperty extends _NumProperty { /// Create a diagnostics property for integers. /// /// The [showName] and [level] arguments must not be null. - IntProperty(String name, int value, { + IntProperty( + String name, + int value, { String ifNull, bool showName = true, String unit, @@ -1282,7 +1292,9 @@ class PercentProperty extends DoubleProperty { /// be sufficient to disambiguate its meaning. /// /// The [showName] and [level] arguments must not be null. - PercentProperty(String name, double fraction, { + PercentProperty( + String name, + double fraction, { String ifNull, bool showName = true, String tooltip, @@ -1361,7 +1373,8 @@ class FlagProperty extends DiagnosticsProperty { /// be descriptions that make the property name redundant. /// /// The [showName] and [level] arguments must not be null. - FlagProperty(String name, { + FlagProperty( + String name, { @required bool value, this.ifTrue, this.ifFalse, @@ -1456,7 +1469,9 @@ class IterableProperty extends DiagnosticsProperty> { /// interesting to display. /// /// The [style], [showName], and [level] arguments must not be null. - IterableProperty(String name, Iterable value, { + IterableProperty( + String name, + Iterable value, { Object defaultValue = kNoDefaultValue, String ifNull, String ifEmpty = '[]', @@ -1531,7 +1546,9 @@ class EnumProperty extends DiagnosticsProperty { /// Create a diagnostics property that displays an enum. /// /// The [level] argument must also not be null. - EnumProperty(String name, T value, { + EnumProperty( + String name, + T value, { Object defaultValue = kNoDefaultValue, DiagnosticLevel level = DiagnosticLevel.info, }) : assert(level != null), @@ -1575,7 +1592,9 @@ class ObjectFlagProperty extends DiagnosticsProperty { /// /// The [showName] and [level] arguments must not be null. Additionally, at /// least one of [ifPresent] and [ifNull] must not be null. - ObjectFlagProperty(String name, T value, { + ObjectFlagProperty( + String name, + T value, { this.ifPresent, String ifNull, bool showName = false, diff --git a/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart b/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart index c70a01dfe2..75fa51e0c1 100644 --- a/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart +++ b/packages/flutter/lib/src/gestures/pointer_signal_resolver.dart @@ -59,7 +59,7 @@ class PointerSignalResolver { informationCollector: (StringBuffer information) { information.writeln('Event:'); information.write(' $event'); - } + }, )); } _firstRegisteredCallback = null; diff --git a/packages/flutter/lib/src/material/data_table.dart b/packages/flutter/lib/src/material/data_table.dart index 0fa9ebac9e..64a2f2fb57 100644 --- a/packages/flutter/lib/src/material/data_table.dart +++ b/packages/flutter/lib/src/material/data_table.dart @@ -162,7 +162,8 @@ class DataCell { /// If the cell has no data, then a [Text] widget with placeholder /// text should be provided instead, and then the [placeholder] /// argument should be set to true. - const DataCell(this.child, { + const DataCell( + this.child, { this.placeholder = false, this.showEditIcon = false, this.onTap, diff --git a/packages/flutter/lib/src/material/ink_well.dart b/packages/flutter/lib/src/material/ink_well.dart index 036108e8a4..8bd5ed2188 100644 --- a/packages/flutter/lib/src/material/ink_well.dart +++ b/packages/flutter/lib/src/material/ink_well.dart @@ -47,15 +47,13 @@ abstract class InteractiveInkFeature extends InkFeature { /// /// Typically causes the ink to propagate faster across the material. By default this /// method does nothing. - void confirm() { - } + void confirm() { } /// Called when the user input that triggered this feature's appearance was canceled. /// /// Typically causes the ink to gradually disappear. By default this method does /// nothing. - void cancel() { - } + void cancel() { } /// The ink's color. Color get color => _color; diff --git a/packages/flutter/lib/src/material/material.dart b/packages/flutter/lib/src/material/material.dart index a5c7f2740b..cb958216b8 100644 --- a/packages/flutter/lib/src/material/material.dart +++ b/packages/flutter/lib/src/material/material.dart @@ -53,7 +53,7 @@ enum MaterialType { /// /// * [MaterialType] /// * [Material] -final Map kMaterialEdges = { +final Map kMaterialEdges = { MaterialType.canvas: null, MaterialType.card: BorderRadius.circular(2.0), MaterialType.circle: null, diff --git a/packages/flutter/lib/src/painting/image_provider.dart b/packages/flutter/lib/src/painting/image_provider.dart index 4d7ec57531..39233aa47c 100644 --- a/packages/flutter/lib/src/painting/image_provider.dart +++ b/packages/flutter/lib/src/painting/image_provider.dart @@ -466,7 +466,7 @@ class NetworkImage extends ImageProvider { /// Creates an object that fetches the image at the given URL. /// /// The arguments must not be null. - const NetworkImage(this.url, { this.scale = 1.0 , this.headers }) + const NetworkImage(this.url, { this.scale = 1.0, this.headers }) : assert(url != null), assert(scale != null); @@ -736,7 +736,8 @@ class ExactAssetImage extends AssetBundleImageProvider { /// The [package] argument must be non-null when fetching an asset that is /// included in a package. See the documentation for the [ExactAssetImage] class /// itself for details. - const ExactAssetImage(this.assetName, { + const ExactAssetImage( + this.assetName, { this.scale = 1.0, this.bundle, this.package, diff --git a/packages/flutter/lib/src/painting/image_resolution.dart b/packages/flutter/lib/src/painting/image_resolution.dart index 849d1518f8..1c5b7ec773 100644 --- a/packages/flutter/lib/src/painting/image_resolution.dart +++ b/packages/flutter/lib/src/painting/image_resolution.dart @@ -128,7 +128,8 @@ class AssetImage extends AssetBundleImageProvider { /// from the set of images to choose from. The [package] argument must be /// non-null when fetching an asset that is included in package. See the /// documentation for the [AssetImage] class itself for details. - const AssetImage(this.assetName, { + const AssetImage( + this.assetName, { this.bundle, this.package, }) : assert(assetName != null); diff --git a/packages/flutter/lib/src/painting/matrix_utils.dart b/packages/flutter/lib/src/painting/matrix_utils.dart index 31164ac0e6..284190bd4c 100644 --- a/packages/flutter/lib/src/painting/matrix_utils.dart +++ b/packages/flutter/lib/src/painting/matrix_utils.dart @@ -265,7 +265,9 @@ class TransformProperty extends DiagnosticsProperty { /// Create a diagnostics property for [Matrix4] objects. /// /// The [showName] and [level] arguments must not be null. - TransformProperty(String name, Matrix4 value, { + TransformProperty( + String name, + Matrix4 value, { bool showName = true, Object defaultValue = kNoDefaultValue, DiagnosticLevel level = DiagnosticLevel.info, diff --git a/packages/flutter/lib/src/painting/strut_style.dart b/packages/flutter/lib/src/painting/strut_style.dart index 6625dae7b1..5b9a1e9c13 100644 --- a/packages/flutter/lib/src/painting/strut_style.dart +++ b/packages/flutter/lib/src/painting/strut_style.dart @@ -302,7 +302,8 @@ class StrutStyle extends Diagnosticable { /// is inherited by being prepended onto the font family names. If /// [fontFamilyFallback] is meant to be empty, pass an empty list instead of null. /// This prevents the previous package name from being prepended twice. - StrutStyle.fromTextStyle(TextStyle textStyle, { + StrutStyle.fromTextStyle( + TextStyle textStyle, { String fontFamily, List fontFamilyFallback, double fontSize, diff --git a/packages/flutter/lib/src/physics/clamped_simulation.dart b/packages/flutter/lib/src/physics/clamped_simulation.dart index 69f5147231..a6fae44ad9 100644 --- a/packages/flutter/lib/src/physics/clamped_simulation.dart +++ b/packages/flutter/lib/src/physics/clamped_simulation.dart @@ -21,7 +21,8 @@ class ClampedSimulation extends Simulation { /// /// The named arguments specify the ranges for the clamping behavior, as /// applied to [x] and [dx]. - ClampedSimulation(this.simulation, { + ClampedSimulation( + this.simulation, { this.xMin = double.negativeInfinity, this.xMax = double.infinity, this.dxMin = double.negativeInfinity, diff --git a/packages/flutter/lib/src/physics/friction_simulation.dart b/packages/flutter/lib/src/physics/friction_simulation.dart index 10125a42c4..43c626e38b 100644 --- a/packages/flutter/lib/src/physics/friction_simulation.dart +++ b/packages/flutter/lib/src/physics/friction_simulation.dart @@ -18,7 +18,10 @@ class FrictionSimulation extends Simulation { /// drag coefficient, a unitless value; the initial position, in the same /// length units as used for [x]; and the initial velocity, in the same /// velocity units as used for [dx]. - FrictionSimulation(double drag, double position, double velocity, { + FrictionSimulation( + double drag, + double position, + double velocity, { Tolerance tolerance = Tolerance.defaultTolerance, }) : _drag = drag, _dragLog = math.log(drag), diff --git a/packages/flutter/lib/src/rendering/editable.dart b/packages/flutter/lib/src/rendering/editable.dart index 0c50fbfc22..eb0190bae5 100644 --- a/packages/flutter/lib/src/rendering/editable.dart +++ b/packages/flutter/lib/src/rendering/editable.dart @@ -300,14 +300,14 @@ class RenderEditable extends RenderBox { final Offset startOffset = _textPainter.getOffsetForCaret( TextPosition(offset: _selection.start, affinity: _selection.affinity), - Rect.zero + Rect.zero, ); _selectionStartInViewport.value = visibleRegion.contains(startOffset + effectiveOffset); final Offset endOffset = _textPainter.getOffsetForCaret( TextPosition(offset: _selection.end, affinity: _selection.affinity), - Rect.zero + Rect.zero, ); _selectionEndInViewport.value = visibleRegion.contains(endOffset + effectiveOffset); diff --git a/packages/flutter/lib/src/rendering/paragraph.dart b/packages/flutter/lib/src/rendering/paragraph.dart index 7f0fc51607..a8d205c9c8 100644 --- a/packages/flutter/lib/src/rendering/paragraph.dart +++ b/packages/flutter/lib/src/rendering/paragraph.dart @@ -41,7 +41,8 @@ class RenderParagraph extends RenderBox { /// /// The [maxLines] property may be null (and indeed defaults to null), but if /// it is not null, it must be greater than zero. - RenderParagraph(TextSpan text, { + RenderParagraph( + TextSpan text, { TextAlign textAlign = TextAlign.start, @required TextDirection textDirection, bool softWrap = true, diff --git a/packages/flutter/lib/src/rendering/platform_view.dart b/packages/flutter/lib/src/rendering/platform_view.dart index a73f625c67..f596db5ff4 100644 --- a/packages/flutter/lib/src/rendering/platform_view.dart +++ b/packages/flutter/lib/src/rendering/platform_view.dart @@ -503,7 +503,7 @@ class _AndroidViewGestureRecognizer extends OneSequenceGestureRecognizer { // Before the arena for a pointer is resolved all events are cached here, if we win the arena // the cached events are dispatched to the view, if we lose the arena we clear the cache for // the pointer. - final Map> cachedEvents = > {}; + final Map> cachedEvents = >{}; // Pointer for which we have already won the arena, events for pointers in this set are // immediately dispatched to the Android view. diff --git a/packages/flutter/lib/src/rendering/shifted_box.dart b/packages/flutter/lib/src/rendering/shifted_box.dart index f5dc34c7cf..dac8fa5176 100644 --- a/packages/flutter/lib/src/rendering/shifted_box.dart +++ b/packages/flutter/lib/src/rendering/shifted_box.dart @@ -244,7 +244,7 @@ abstract class RenderAligningShiftedBox extends RenderShiftedBox { /// A constructor to be used only when the extending class also has a mixin. // TODO(gspencer): Remove this constructor once https://github.com/dart-lang/sdk/issues/31543 is fixed. @protected - RenderAligningShiftedBox.mixin(AlignmentGeometry alignment,TextDirection textDirection, RenderBox child) + RenderAligningShiftedBox.mixin(AlignmentGeometry alignment, TextDirection textDirection, RenderBox child) : this(alignment: alignment, textDirection: textDirection, child: child); Alignment _resolvedAlignment; diff --git a/packages/flutter/lib/src/rendering/sliver.dart b/packages/flutter/lib/src/rendering/sliver.dart index c09253d057..3bb9d90c04 100644 --- a/packages/flutter/lib/src/rendering/sliver.dart +++ b/packages/flutter/lib/src/rendering/sliver.dart @@ -773,7 +773,8 @@ class SliverHitTestEntry extends HitTestEntry { /// Creates a sliver hit test entry. /// /// The [mainAxisPosition] and [crossAxisPosition] arguments must not be null. - const SliverHitTestEntry(RenderSliver target, { + const SliverHitTestEntry( + RenderSliver target, { @required this.mainAxisPosition, @required this.crossAxisPosition, }) : assert(mainAxisPosition != null), diff --git a/packages/flutter/lib/src/services/platform_views.dart b/packages/flutter/lib/src/services/platform_views.dart index 850cfb9c77..983ee54333 100644 --- a/packages/flutter/lib/src/services/platform_views.dart +++ b/packages/flutter/lib/src/services/platform_views.dart @@ -117,7 +117,7 @@ class PlatformViewsService { assert(creationParams == null || creationParamsCodec != null); // TODO(amirh): pass layoutDirection once the system channel supports it. - final Map args = { + final Map args = { 'id': id, 'viewType': viewType, }; @@ -520,7 +520,7 @@ class AndroidViewController { if (_state == _AndroidViewState.waitingForSize) return _create(size); - await SystemChannels.platform_views.invokeMethod('resize', { + await SystemChannels.platform_views.invokeMethod('resize', { 'id': id, 'width': size.width, 'height': size.height, @@ -542,7 +542,7 @@ class AndroidViewController { if (_state == _AndroidViewState.waitingForSize) return; - await SystemChannels.platform_views.invokeMethod('setDirection', { + await SystemChannels.platform_views.invokeMethod('setDirection', { 'id': id, 'direction': _getAndroidDirection(layoutDirection), }); @@ -578,7 +578,7 @@ class AndroidViewController { } Future _create(Size size) async { - final Map args = { + final Map args = { 'id': id, 'viewType': _viewType, 'width': size.width, @@ -642,7 +642,7 @@ class UiKitViewController { /// Calling this method releases the delayed events to the embedded UIView and makes it consume /// any following touch events for the pointers involved in the active gesture. Future acceptGesture() { - final Map args = { + final Map args = { 'id': id, }; return SystemChannels.platform_views.invokeMethod('acceptGesture', args); @@ -654,7 +654,7 @@ class UiKitViewController { /// Calling this method drops the buffered touch events and prevents any future touch events for /// the pointers that are part of the active touch sequence from arriving to the embedded view. Future rejectGesture() { - final Map args = { + final Map args = { 'id': id, }; return SystemChannels.platform_views.invokeMethod('rejectGesture', args); diff --git a/packages/flutter/lib/src/widgets/icon.dart b/packages/flutter/lib/src/widgets/icon.dart index 0b8cfbc1be..73a3416659 100644 --- a/packages/flutter/lib/src/widgets/icon.dart +++ b/packages/flutter/lib/src/widgets/icon.dart @@ -48,7 +48,8 @@ class Icon extends StatelessWidget { /// Creates an icon. /// /// The [size] and [color] default to the value given by the current [IconTheme]. - const Icon(this.icon, { + const Icon( + this.icon, { Key key, this.size, this.color, diff --git a/packages/flutter/lib/src/widgets/image.dart b/packages/flutter/lib/src/widgets/image.dart index 785b82f484..d941266652 100644 --- a/packages/flutter/lib/src/widgets/image.dart +++ b/packages/flutter/lib/src/widgets/image.dart @@ -195,7 +195,8 @@ class Image extends StatefulWidget { /// [FilterQuality.none] which corresponds to nearest-neighbor. /// /// If [excludeFromSemantics] is true, then [semanticLabel] will be ignored. - Image.network(String src, { + Image.network( + String src, { Key key, double scale = 1.0, this.semanticLabel, @@ -236,7 +237,8 @@ class Image extends StatefulWidget { /// [FilterQuality.none] which corresponds to nearest-neighbor. /// /// If [excludeFromSemantics] is true, then [semanticLabel] will be ignored. - Image.file(File file, { + Image.file( + File file, { Key key, double scale = 1.0, this.semanticLabel, @@ -384,7 +386,8 @@ class Image extends StatefulWidget { /// scale is present. /// * , an introduction to assets in /// Flutter. - Image.asset(String name, { + Image.asset( + String name, { Key key, AssetBundle bundle, this.semanticLabel, @@ -425,7 +428,8 @@ class Image extends StatefulWidget { /// [FilterQuality.none] which corresponds to nearest-neighbor. /// /// If [excludeFromSemantics] is true, then [semanticLabel] will be ignored. - Image.memory(Uint8List bytes, { + Image.memory( + Uint8List bytes, { Key key, double scale = 1.0, this.semanticLabel, diff --git a/packages/flutter/lib/src/widgets/image_icon.dart b/packages/flutter/lib/src/widgets/image_icon.dart index 65b1b04a3d..b795b8e7a8 100644 --- a/packages/flutter/lib/src/widgets/image_icon.dart +++ b/packages/flutter/lib/src/widgets/image_icon.dart @@ -23,7 +23,8 @@ class ImageIcon extends StatelessWidget { /// Creates an image icon. /// /// The [size] and [color] default to the value given by the current [IconTheme]. - const ImageIcon(this.image, { + const ImageIcon( + this.image, { Key key, this.size, this.color, diff --git a/packages/flutter/lib/src/widgets/nested_scroll_view.dart b/packages/flutter/lib/src/widgets/nested_scroll_view.dart index ec7fdb5c20..daa6ba3edd 100644 --- a/packages/flutter/lib/src/widgets/nested_scroll_view.dart +++ b/packages/flutter/lib/src/widgets/nested_scroll_view.dart @@ -844,7 +844,8 @@ class _NestedScrollCoordinator implements ScrollActivityDelegate, ScrollHoldCont } class _NestedScrollController extends ScrollController { - _NestedScrollController(this.coordinator, { + _NestedScrollController( + this.coordinator, { double initialScrollOffset = 0.0, String debugLabel, }) : super(initialScrollOffset: initialScrollOffset, debugLabel: debugLabel); diff --git a/packages/flutter/lib/src/widgets/performance_overlay.dart b/packages/flutter/lib/src/widgets/performance_overlay.dart index f8482d3cbe..b70c6b6ea8 100644 --- a/packages/flutter/lib/src/widgets/performance_overlay.dart +++ b/packages/flutter/lib/src/widgets/performance_overlay.dart @@ -36,11 +36,12 @@ class PerformanceOverlay extends LeafRenderObjectWidget { }) : super(key: key); /// Create a performance overlay that displays all available statistics - PerformanceOverlay.allEnabled({ Key key, - this.rasterizerThreshold = 0, - this.checkerboardRasterCacheImages = false, - this.checkerboardOffscreenLayers = false }) - : optionsMask = + PerformanceOverlay.allEnabled({ + Key key, + this.rasterizerThreshold = 0, + this.checkerboardRasterCacheImages = false, + this.checkerboardOffscreenLayers = false, + }) : optionsMask = 1 << PerformanceOverlayOption.displayRasterizerStatistics.index | 1 << PerformanceOverlayOption.visualizeRasterizerStatistics.index | 1 << PerformanceOverlayOption.displayEngineStatistics.index | diff --git a/packages/flutter/lib/src/widgets/text.dart b/packages/flutter/lib/src/widgets/text.dart index 5991ca55b5..99b76f4d04 100644 --- a/packages/flutter/lib/src/widgets/text.dart +++ b/packages/flutter/lib/src/widgets/text.dart @@ -224,7 +224,8 @@ class Text extends StatelessWidget { /// closest enclosing [DefaultTextStyle]. /// /// The [data] parameter must not be null. - const Text(this.data, { + const Text( + this.data, { Key key, this.style, this.strutStyle, @@ -246,7 +247,8 @@ class Text extends StatelessWidget { /// Creates a text widget with a [TextSpan]. /// /// The [textSpan] parameter must not be null. - const Text.rich(this.textSpan, { + const Text.rich( + this.textSpan, { Key key, this.style, this.strutStyle, diff --git a/packages/flutter/lib/src/widgets/text_selection.dart b/packages/flutter/lib/src/widgets/text_selection.dart index 5646fe4c90..2427b0cf93 100644 --- a/packages/flutter/lib/src/widgets/text_selection.dart +++ b/packages/flutter/lib/src/widgets/text_selection.dart @@ -640,7 +640,7 @@ class _TextSelectionHandleOverlayState ], ), ), - ) + ), ); } diff --git a/packages/flutter/test/cupertino/route_test.dart b/packages/flutter/test/cupertino/route_test.dart index a24ed979a0..dd152840ae 100644 --- a/packages/flutter/test/cupertino/route_test.dart +++ b/packages/flutter/test/cupertino/route_test.dart @@ -348,7 +348,7 @@ void main() { onPressed: () { Navigator.pop(context); }, - ) + ), ], ); }, diff --git a/packages/flutter/test/material/popup_menu_test.dart b/packages/flutter/test/material/popup_menu_test.dart index a08af4d7d2..ed4a16ad20 100644 --- a/packages/flutter/test/material/popup_menu_test.dart +++ b/packages/flutter/test/material/popup_menu_test.dart @@ -14,7 +14,7 @@ void main() { final Key targetKey = UniqueKey(); await tester.pumpWidget( MaterialApp( - routes: { + routes: { '/next': (BuildContext context) { return const Text('Next'); }, diff --git a/packages/flutter/test/material/radio_test.dart b/packages/flutter/test/material/radio_test.dart index 8e6c5d690d..3be3d203f9 100644 --- a/packages/flutter/test/material/radio_test.dart +++ b/packages/flutter/test/material/radio_test.dart @@ -267,7 +267,7 @@ void main() { groupValue: 1, onChanged: (int value) { }, ), - ) + ), ), ), ), diff --git a/packages/flutter/test/material/tab_bar_theme_test.dart b/packages/flutter/test/material/tab_bar_theme_test.dart index e8fb8537f0..23fef94a1b 100644 --- a/packages/flutter/test/material/tab_bar_theme_test.dart +++ b/packages/flutter/test/material/tab_bar_theme_test.dart @@ -26,7 +26,10 @@ final List _sizedTabs = [ ]; Widget _withTheme( - TabBarTheme theme, { List tabs = _tabs, bool isScrollable = false }) { + TabBarTheme theme, { + List tabs = _tabs, + bool isScrollable = false, +}) { return MaterialApp( theme: ThemeData(tabBarTheme: theme), home: Scaffold( @@ -102,7 +105,7 @@ void main() { const double indicatorWeight = 2.0; // default value const EdgeInsetsGeometry labelPadding = EdgeInsets.fromLTRB( - leftPadding, topPadding, rightPadding, bottomPadding + leftPadding, topPadding, rightPadding, bottomPadding, ); const TabBarTheme tabBarTheme = TabBarTheme(labelPadding: labelPadding); diff --git a/packages/flutter/test/material/theme_test.dart b/packages/flutter/test/material/theme_test.dart index 54fe5ca9b1..df52aa34ea 100644 --- a/packages/flutter/test/material/theme_test.dart +++ b/packages/flutter/test/material/theme_test.dart @@ -741,7 +741,7 @@ class _TextStyleProxy implements TextStyle { double wordSpacingFactor = 1.0, double wordSpacingDelta = 0.0, double heightFactor = 1.0, - double heightDelta = 0.0 + double heightDelta = 0.0, }) { throw UnimplementedError(); } @@ -773,7 +773,7 @@ class _TextStyleProxy implements TextStyle { Color decorationColor, TextDecorationStyle decorationStyle, double decorationThickness, - String debugLabel + String debugLabel, }) { throw UnimplementedError(); } @@ -796,7 +796,7 @@ class _TextStyleProxy implements TextStyle { FontWeight fontWeight, FontStyle fontStyle, double height, - StrutStyle strutStyle + StrutStyle strutStyle, }) { throw UnimplementedError(); } diff --git a/packages/flutter/test/rendering/mock_canvas.dart b/packages/flutter/test/rendering/mock_canvas.dart index 947d66f3b8..21163137a2 100644 --- a/packages/flutter/test/rendering/mock_canvas.dart +++ b/packages/flutter/test/rendering/mock_canvas.dart @@ -866,9 +866,15 @@ abstract class _PaintPredicate { abstract class _DrawCommandPaintPredicate extends _PaintPredicate { _DrawCommandPaintPredicate( - this.symbol, this.name, this.argumentCount, this.paintArgumentIndex, - { this.color, this.strokeWidth, this.hasMaskFilter, this.style, } - ); + this.symbol, + this.name, + this.argumentCount, + this.paintArgumentIndex, { + this.color, + this.strokeWidth, + this.hasMaskFilter, + this.style, + }); final Symbol symbol; final String name; @@ -934,7 +940,9 @@ abstract class _DrawCommandPaintPredicate extends _PaintPredicate { } class _OneParameterPaintPredicate extends _DrawCommandPaintPredicate { - _OneParameterPaintPredicate(Symbol symbol, String name, { + _OneParameterPaintPredicate( + Symbol symbol, + String name, { @required this.expected, @required Color color, @required double strokeWidth, @@ -967,7 +975,9 @@ class _OneParameterPaintPredicate extends _DrawCommandPaintPredicate { } class _TwoParameterPaintPredicate extends _DrawCommandPaintPredicate { - _TwoParameterPaintPredicate(Symbol symbol, String name, { + _TwoParameterPaintPredicate( + Symbol symbol, + String name, { @required this.expected1, @required this.expected2, @required Color color, diff --git a/packages/flutter/test/semantics/semantics_service_test.dart b/packages/flutter/test/semantics/semantics_service_test.dart index a21358e736..57ddf4416d 100644 --- a/packages/flutter/test/semantics/semantics_service_test.dart +++ b/packages/flutter/test/semantics/semantics_service_test.dart @@ -22,8 +22,8 @@ void main() { await SemanticsService.announce('announcement 2', TextDirection.rtl); expect(log, equals(>[ - {'type': 'announce', 'data': {'message': 'announcement 1', 'textDirection': 1}}, - {'type': 'announce', 'data': {'message': 'announcement 2', 'textDirection': 0}}, + {'type': 'announce', 'data': {'message': 'announcement 1', 'textDirection': 1}}, + {'type': 'announce', 'data': {'message': 'announcement 2', 'textDirection': 0}}, ])); }); } diff --git a/packages/flutter/test/services/message_codecs_test.dart b/packages/flutter/test/services/message_codecs_test.dart index 8df9863e8b..8c5fad1d46 100644 --- a/packages/flutter/test/services/message_codecs_test.dart +++ b/packages/flutter/test/services/message_codecs_test.dart @@ -67,7 +67,7 @@ void main() { '', 'hello', ['nested', []], - { 'a': 'nested', 'b': {} }, + {'a': 'nested', 'b': {}}, 'world', ]; _checkEncodeDecode(json, message); @@ -185,7 +185,7 @@ void main() { double.nan, ]), ['nested', []], - { 'a': 'nested', null: {} }, + {'a': 'nested', null: {}}, 'world', ]; _checkEncodeDecode(standard, message); diff --git a/packages/flutter/test/services/text_input_test.dart b/packages/flutter/test/services/text_input_test.dart index 60984c91d4..ee9192c51c 100644 --- a/packages/flutter/test/services/text_input_test.dart +++ b/packages/flutter/test/services/text_input_test.dart @@ -26,7 +26,9 @@ void main() { ); final Map json = configuration.toJson(); expect(json['inputType'], { - 'name': 'TextInputType.text', 'signed': null, 'decimal': null, + 'name': 'TextInputType.text', + 'signed': null, + 'decimal': null, }); expect(json['obscureText'], true); expect(json['autocorrect'], false); @@ -42,7 +44,9 @@ void main() { ); final Map json = configuration.toJson(); expect(json['inputType'], { - 'name': 'TextInputType.number', 'signed': false, 'decimal': true, + 'name': 'TextInputType.number', + 'signed': false, + 'decimal': true, }); expect(json['obscureText'], true); expect(json['autocorrect'], false); diff --git a/packages/flutter/test/widgets/backdrop_filter_test.dart b/packages/flutter/test/widgets/backdrop_filter_test.dart index 80294b3afc..df499b8253 100644 --- a/packages/flutter/test/widgets/backdrop_filter_test.dart +++ b/packages/flutter/test/widgets/backdrop_filter_test.dart @@ -37,8 +37,8 @@ void main() { ), ), ], - ) - ) + ), + ), ) ); await expectLater( diff --git a/packages/flutter/test/widgets/heroes_test.dart b/packages/flutter/test/widgets/heroes_test.dart index 264a90e818..7aee8c88f9 100644 --- a/packages/flutter/test/widgets/heroes_test.dart +++ b/packages/flutter/test/widgets/heroes_test.dart @@ -1649,8 +1649,7 @@ void main() { expect(tester.takeException(), isAssertionError); }); - testWidgets('Hero within a Hero subtree with Builder, throws', ( - WidgetTester tester) async { + testWidgets('Hero within a Hero subtree with Builder, throws', (WidgetTester tester) async { await tester.pumpWidget( MaterialApp( home: Material( @@ -1672,8 +1671,7 @@ void main() { expect(tester.takeException(),isAssertionError); }); - testWidgets('Hero within a Hero subtree with LayoutBuilder, throws', ( - WidgetTester tester) async { + testWidgets('Hero within a Hero subtree with LayoutBuilder, throws', (WidgetTester tester) async { await tester.pumpWidget( MaterialApp( home: Material( diff --git a/packages/flutter/test/widgets/image_test.dart b/packages/flutter/test/widgets/image_test.dart index a45eea9584..284da703b8 100644 --- a/packages/flutter/test/widgets/image_test.dart +++ b/packages/flutter/test/widgets/image_test.dart @@ -902,7 +902,7 @@ class TestImageProvider extends ImageProvider { } class TestImageStreamCompleter extends ImageStreamCompleter { - final Map listeners = {}; + final Map listeners = {}; @override void addListener(ImageListener listener, { ImageErrorListener onError }) { diff --git a/packages/flutter/test/widgets/linked_scroll_view_test.dart b/packages/flutter/test/widgets/linked_scroll_view_test.dart index 1f36a3a366..b980107036 100644 --- a/packages/flutter/test/widgets/linked_scroll_view_test.dart +++ b/packages/flutter/test/widgets/linked_scroll_view_test.dart @@ -105,7 +105,8 @@ class LinkedScrollController extends ScrollController { } class LinkedScrollPosition extends ScrollPositionWithSingleContext { - LinkedScrollPosition(this.owner, { + LinkedScrollPosition( + this.owner, { ScrollPhysics physics, ScrollContext context, double initialPixels, diff --git a/packages/flutter/test/widgets/navigator_replacement_test.dart b/packages/flutter/test/widgets/navigator_replacement_test.dart index ea7685951a..e1da397ed8 100644 --- a/packages/flutter/test/widgets/navigator_replacement_test.dart +++ b/packages/flutter/test/widgets/navigator_replacement_test.dart @@ -9,7 +9,7 @@ void main() { testWidgets('Back during pushReplacement', (WidgetTester tester) async { await tester.pumpWidget(MaterialApp( home: const Material(child: Text('home')), - routes: { + routes: { '/a': (BuildContext context) => const Material(child: Text('a')), '/b': (BuildContext context) => const Material(child: Text('b')), }, @@ -42,7 +42,7 @@ void main() { testWidgets('pushAndRemoveUntil', (WidgetTester tester) async { await tester.pumpWidget(MaterialApp( home: const Material(child: Text('home')), - routes: { + routes: { '/a': (BuildContext context) => const Material(child: Text('a')), '/b': (BuildContext context) => const Material(child: Text('b')), }, diff --git a/packages/flutter/test/widgets/obscured_animated_image_test.dart b/packages/flutter/test/widgets/obscured_animated_image_test.dart index cc339bbc69..eaacbf9d97 100644 --- a/packages/flutter/test/widgets/obscured_animated_image_test.dart +++ b/packages/flutter/test/widgets/obscured_animated_image_test.dart @@ -22,7 +22,7 @@ Future main() async { await tester.pumpWidget( MaterialApp( home: Image(image: fakeImageProvider, excludeFromSemantics: true, key: imageKey), - routes: { + routes: { '/page': (BuildContext context) => Container(), }, ) diff --git a/packages/flutter/test/widgets/semantics_event_test.dart b/packages/flutter/test/widgets/semantics_event_test.dart index 035ab3daee..c72e0bad98 100644 --- a/packages/flutter/test/widgets/semantics_event_test.dart +++ b/packages/flutter/test/widgets/semantics_event_test.dart @@ -27,9 +27,9 @@ void main() { test('SemanticsEvent.toMap', () { expect( TestSemanticsEvent(text: 'hi', number: 11).toMap(), - { + { 'type': 'TestEvent', - 'data': { + 'data': { 'text': 'hi', 'number': 11, }, @@ -37,10 +37,10 @@ void main() { ); expect( TestSemanticsEvent(text: 'hi', number: 11).toMap(nodeId: 123), - { + { 'type': 'TestEvent', 'nodeId': 123, - 'data': { + 'data': { 'text': 'hi', 'number': 11, }, diff --git a/packages/flutter/test/widgets/semantics_tester.dart b/packages/flutter/test/widgets/semantics_tester.dart index 7b22c79138..8cb2014578 100644 --- a/packages/flutter/test/widgets/semantics_tester.dart +++ b/packages/flutter/test/widgets/semantics_tester.dart @@ -621,17 +621,16 @@ class SemanticsTester { class _HasSemantics extends Matcher { const _HasSemantics( - this._semantics, - { - @required this.ignoreRect, - @required this.ignoreTransform, - @required this.ignoreId, - @required this.childOrder, - }) : assert(_semantics != null), - assert(ignoreRect != null), - assert(ignoreId != null), - assert(ignoreTransform != null), - assert(childOrder != null); + this._semantics, { + @required this.ignoreRect, + @required this.ignoreTransform, + @required this.ignoreId, + @required this.childOrder, + }) : assert(_semantics != null), + assert(ignoreRect != null), + assert(ignoreId != null), + assert(ignoreTransform != null), + assert(childOrder != null); final TestSemantics _semantics; final bool ignoreRect; diff --git a/packages/flutter/test/widgets/sliver_appbar_opacity.dart b/packages/flutter/test/widgets/sliver_appbar_opacity.dart index a22bf340f3..ddb132883c 100644 --- a/packages/flutter/test/widgets/sliver_appbar_opacity.dart +++ b/packages/flutter/test/widgets/sliver_appbar_opacity.dart @@ -166,7 +166,7 @@ void main() { class _TestWidget extends StatelessWidget { - const _TestWidget({this.pinned, this.floating, this.bottom, this.controller,}); + const _TestWidget({this.pinned, this.floating, this.bottom, this.controller}); final bool pinned; final bool floating; diff --git a/packages/flutter/test/widgets/table_test.dart b/packages/flutter/test/widgets/table_test.dart index b12d1cfe09..3df1c86906 100644 --- a/packages/flutter/test/widgets/table_test.dart +++ b/packages/flutter/test/widgets/table_test.dart @@ -73,7 +73,7 @@ void main() { textDirection: TextDirection.ltr, child: Center( child: Table( - columnWidths: const { + columnWidths: const { 0: FixedColumnWidth(100.0), 1: FixedColumnWidth(110.0), 2: FixedColumnWidth(125.0), @@ -143,7 +143,7 @@ void main() { textDirection: TextDirection.rtl, child: Center( child: Table( - columnWidths: const { + columnWidths: const { 0: FixedColumnWidth(100.0), 1: FixedColumnWidth(110.0), 2: FixedColumnWidth(125.0), diff --git a/packages/flutter/test/widgets/widget_inspector_test.dart b/packages/flutter/test/widgets/widget_inspector_test.dart index d93ec5ebfd..910ee83e08 100644 --- a/packages/flutter/test/widgets/widget_inspector_test.dart +++ b/packages/flutter/test/widgets/widget_inspector_test.dart @@ -964,7 +964,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { expect(selectionChangedCount, equals(2)); expect(service.selection.current, equals(elementB.renderObject)); - await service.testExtension('setSelectionById', {'arg' : service.toId(elementA, 'my-group'), 'objectGroup': 'my-group'}); + await service.testExtension('setSelectionById', {'arg': service.toId(elementA, 'my-group'), 'objectGroup': 'my-group'}); expect(selectionChangedCount, equals(3)); expect(service.selection.currentElement, equals(elementA)); expect(service.selection.current, equals(elementA.renderObject)); diff --git a/packages/flutter_driver/lib/src/driver/timeline_summary.dart b/packages/flutter_driver/lib/src/driver/timeline_summary.dart index 95060fb65e..cf2dfbd607 100644 --- a/packages/flutter_driver/lib/src/driver/timeline_summary.dart +++ b/packages/flutter_driver/lib/src/driver/timeline_summary.dart @@ -85,7 +85,7 @@ class TimelineSummary { /// Encodes this summary as JSON. Map get summaryJson { - return { + return { 'average_frame_build_time_millis': computeAverageFrameBuildTimeMillis(), '90th_percentile_frame_build_time_millis': computePercentileFrameBuildTimeMillis(90.0), '99th_percentile_frame_build_time_millis': computePercentileFrameBuildTimeMillis(99.0), diff --git a/packages/flutter_driver/test/flutter_driver_test.dart b/packages/flutter_driver/test/flutter_driver_test.dart index e932047a7a..c532f515ca 100644 --- a/packages/flutter_driver/test/flutter_driver_test.dart +++ b/packages/flutter_driver/test/flutter_driver_test.dart @@ -300,7 +300,7 @@ void main() { when(mockPeer.sendRequest('_getVMTimeline')).thenAnswer((Invocation invocation) async { log.add('download'); - return { + return { 'traceEvents': [ { 'name': 'test event', @@ -359,7 +359,7 @@ void main() { }); when(mockPeer.sendRequest('_getVMTimeline')).thenAnswer((Invocation invocation) async { - return { + return { 'traceEvents': [ { 'name': 'test event', diff --git a/packages/flutter_driver/test/src/timeline_summary_test.dart b/packages/flutter_driver/test/src/timeline_summary_test.dart index e5d5b94e30..38fc0bec65 100644 --- a/packages/flutter_driver/test/src/timeline_summary_test.dart +++ b/packages/flutter_driver/test/src/timeline_summary_test.dart @@ -21,15 +21,22 @@ void main() { } Map build(int timeStamp, int duration) => { - 'name': 'Frame', 'ph': 'X', 'ts': timeStamp, 'dur': duration, + 'name': 'Frame', + 'ph': 'X', + 'ts': timeStamp, + 'dur': duration, }; Map begin(int timeStamp) => { - 'name': 'GPURasterizer::Draw', 'ph': 'B', 'ts': timeStamp, + 'name': 'GPURasterizer::Draw', + 'ph': 'B', + 'ts': timeStamp, }; Map end(int timeStamp) => { - 'name': 'GPURasterizer::Draw', 'ph': 'E', 'ts': timeStamp, + 'name': 'GPURasterizer::Draw', + 'ph': 'E', + 'ts': timeStamp, }; List> rasterizeTimeSequenceInMillis(List sequence) { diff --git a/packages/flutter_test/lib/src/binding.dart b/packages/flutter_test/lib/src/binding.dart index 767b1885b4..6c1ab7a5e3 100644 --- a/packages/flutter_test/lib/src/binding.dart +++ b/packages/flutter_test/lib/src/binding.dart @@ -231,7 +231,8 @@ abstract class TestWidgetsFlutterBinding extends BindingBase /// [AutomatedTestWidgetsFlutterBinding] implementation to increase the /// current timeout. See [AutomatedTestWidgetsFlutterBinding.addTime] for /// details. The value is ignored by the [LiveTestWidgetsFlutterBinding]. - Future runAsync(Future callback(), { + Future runAsync( + Future callback(), { Duration additionalTime = const Duration(milliseconds: 1000), }); @@ -740,7 +741,8 @@ class AutomatedTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding { } @override - Future runAsync(Future callback(), { + Future runAsync( + Future callback(), { Duration additionalTime = const Duration(milliseconds: 1000), }) { assert(additionalTime != null); @@ -1249,7 +1251,8 @@ class LiveTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding { } @override - Future runAsync(Future callback(), { + Future runAsync( + Future callback(), { Duration additionalTime = const Duration(milliseconds: 1000), }) async { assert(() { diff --git a/packages/flutter_test/lib/src/finders.dart b/packages/flutter_test/lib/src/finders.dart index 4968f03318..214995f530 100644 --- a/packages/flutter_test/lib/src/finders.dart +++ b/packages/flutter_test/lib/src/finders.dart @@ -654,7 +654,9 @@ class _ElementPredicateFinder extends MatchFinder { } class _DescendantFinder extends Finder { - _DescendantFinder(this.ancestor, this.descendant, { + _DescendantFinder( + this.ancestor, + this.descendant, { this.matchRoot = false, bool skipOffstage = true, }) : super(skipOffstage: skipOffstage); diff --git a/packages/flutter_test/lib/src/widget_tester.dart b/packages/flutter_test/lib/src/widget_tester.dart index 9063cc1e5b..085ab362d6 100644 --- a/packages/flutter_test/lib/src/widget_tester.dart +++ b/packages/flutter_test/lib/src/widget_tester.dart @@ -409,7 +409,8 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker /// are required to wait for the returned future to complete before calling /// this method again. Attempts to do otherwise will result in a /// [TestFailure] error being thrown. - Future runAsync(Future callback(), { + Future runAsync( + Future callback(), { Duration additionalTime = const Duration(milliseconds: 1000), }) => binding.runAsync(callback, additionalTime: additionalTime); diff --git a/packages/flutter_test/lib/src/window.dart b/packages/flutter_test/lib/src/window.dart index d4111f7d84..65b8a3c52a 100644 --- a/packages/flutter_test/lib/src/window.dart +++ b/packages/flutter_test/lib/src/window.dart @@ -315,9 +315,11 @@ class TestWindow implements Window { } @override - void sendPlatformMessage(String name, - ByteData data, - PlatformMessageResponseCallback callback) { + void sendPlatformMessage( + String name, + ByteData data, + PlatformMessageResponseCallback callback, + ) { _window.sendPlatformMessage(name, data, callback); } diff --git a/packages/flutter_test/test/finders_test.dart b/packages/flutter_test/test/finders_test.dart index 93c2671dd2..6615983058 100644 --- a/packages/flutter_test/test/finders_test.dart +++ b/packages/flutter_test/test/finders_test.dart @@ -162,6 +162,5 @@ class SimpleCustomSemanticsRenderObject extends RenderBox { void describeSemanticsConfiguration(SemanticsConfiguration config) { super.describeSemanticsConfiguration(config); config..label = label..textDirection = TextDirection.ltr; - } -} \ No newline at end of file +} diff --git a/packages/flutter_tools/bin/fuchsia_attach.dart b/packages/flutter_tools/bin/fuchsia_attach.dart index 97e14b7b1f..04f713f144 100644 --- a/packages/flutter_tools/bin/fuchsia_attach.dart +++ b/packages/flutter_tools/bin/fuchsia_attach.dart @@ -113,7 +113,7 @@ Future main(List args) async { platformKernelDill: platformKernelDill, flutterPatchedSdk: flutterPatchedSdk, ), - } + }, ); } diff --git a/packages/flutter_tools/lib/src/android/android_sdk.dart b/packages/flutter_tools/lib/src/android/android_sdk.dart index 5c66f96a56..d8a7326d7f 100644 --- a/packages/flutter_tools/lib/src/android/android_sdk.dart +++ b/packages/flutter_tools/lib/src/android/android_sdk.dart @@ -588,7 +588,8 @@ class AndroidSdk { } class AndroidSdkVersion implements Comparable { - AndroidSdkVersion._(this.sdk, { + AndroidSdkVersion._( + this.sdk, { @required this.sdkLevel, @required this.platformName, @required this.buildToolsVersion, diff --git a/packages/flutter_tools/lib/src/android/android_studio.dart b/packages/flutter_tools/lib/src/android/android_studio.dart index 58c7ca0756..8457d2666c 100644 --- a/packages/flutter_tools/lib/src/android/android_studio.dart +++ b/packages/flutter_tools/lib/src/android/android_studio.dart @@ -30,9 +30,13 @@ final RegExp _dotHomeStudioVersionMatcher = String get javaPath => androidStudio?.javaPath; class AndroidStudio implements Comparable { - AndroidStudio(this.directory, - {Version version, this.configured, this.studioAppName = 'AndroidStudio', this.presetPluginsPath}) - : version = version ?? Version.unknown { + AndroidStudio( + this.directory, { + Version version, + this.configured, + this.studioAppName = 'AndroidStudio', + this.presetPluginsPath, + }) : version = version ?? Version.unknown { _init(); } diff --git a/packages/flutter_tools/lib/src/build_info.dart b/packages/flutter_tools/lib/src/build_info.dart index 2e3322b9a5..60babd6a7a 100644 --- a/packages/flutter_tools/lib/src/build_info.dart +++ b/packages/flutter_tools/lib/src/build_info.dart @@ -10,7 +10,9 @@ import 'globals.dart'; /// Information about a build to be performed or used. class BuildInfo { - const BuildInfo(this.mode, this.flavor, { + const BuildInfo( + this.mode, + this.flavor, { this.trackWidgetCreation = false, this.compilationTraceFilePath, this.createBaseline = false, diff --git a/packages/flutter_tools/lib/src/build_runner/build_runner.dart b/packages/flutter_tools/lib/src/build_runner/build_runner.dart index 1684690e13..c4dddce613 100644 --- a/packages/flutter_tools/lib/src/build_runner/build_runner.dart +++ b/packages/flutter_tools/lib/src/build_runner/build_runner.dart @@ -119,7 +119,8 @@ class BuildRunner extends CodeGenerator { } @override - Future daemon(FlutterProject flutterProject, { + Future daemon( + FlutterProject flutterProject, { String mainPath, bool linkPlatformKernelIn = false, bool targetProductVm = false, diff --git a/packages/flutter_tools/lib/src/commands/daemon.dart b/packages/flutter_tools/lib/src/commands/daemon.dart index e884b4b94f..a4e1524ad3 100644 --- a/packages/flutter_tools/lib/src/commands/daemon.dart +++ b/packages/flutter_tools/lib/src/commands/daemon.dart @@ -528,7 +528,7 @@ class AppDomain extends Domain { return app.stop().then( (void value) => true, onError: (dynamic error, StackTrace stack) { - _sendAppEvent(app, 'log', { 'log': '$error', 'error': true }); + _sendAppEvent(app, 'log', {'log': '$error', 'error': true}); app.closeLogger(); _apps.remove(app); return false; @@ -546,7 +546,7 @@ class AppDomain extends Domain { return app.detach().then( (void value) => true, onError: (dynamic error, StackTrace stack) { - _sendAppEvent(app, 'log', { 'log': '$error', 'error': true }); + _sendAppEvent(app, 'log', {'log': '$error', 'error': true}); app.closeLogger(); _apps.remove(app); return false; @@ -559,7 +559,7 @@ class AppDomain extends Domain { } void _sendAppEvent(AppInstance app, String name, [ Map args ]) { - final Map eventArgs = {'appId': app.id}; + final Map eventArgs = {'appId': app.id}; if (args != null) eventArgs.addAll(args); sendEvent('app.$name', eventArgs); @@ -951,7 +951,7 @@ class _AppRunLogger extends Logger { if (parent != null) { parent.printTrace(message); } else { - _sendLogEvent({ 'log': message, 'trace': true }); + _sendLogEvent({'log': message, 'trace': true}); } } diff --git a/packages/flutter_tools/lib/src/commands/run.dart b/packages/flutter_tools/lib/src/commands/run.dart index 507ea456b2..e72ae1aa05 100644 --- a/packages/flutter_tools/lib/src/commands/run.dart +++ b/packages/flutter_tools/lib/src/commands/run.dart @@ -34,7 +34,7 @@ abstract class RunCommandBase extends FlutterCommand { ) ..addFlag('verbose-system-logs', negatable: false, - help: 'Include verbose logging from the flutter engine.' + help: 'Include verbose logging from the flutter engine.', ) ..addOption('route', help: 'Which route to load when running the app.', @@ -203,7 +203,7 @@ class RunCommand extends RunCommandBase { ? getNameForTargetPlatform(await devices[0].targetPlatform) : 'multiple'; - return { 'cd3': '$isEmulator', 'cd4': deviceType }; + return {'cd3': '$isEmulator', 'cd4': deviceType}; } @override diff --git a/packages/flutter_tools/lib/src/commands/update_packages.dart b/packages/flutter_tools/lib/src/commands/update_packages.dart index a019bb8e68..fd4f51a760 100644 --- a/packages/flutter_tools/lib/src/commands/update_packages.dart +++ b/packages/flutter_tools/lib/src/commands/update_packages.dart @@ -909,7 +909,10 @@ class PubspecHeader extends PubspecLine { /// A dependency, as represented by a line (or two) from a pubspec.yaml file. class PubspecDependency extends PubspecLine { - PubspecDependency(String line, this.name, this.suffix, { + PubspecDependency( + String line, + this.name, + this.suffix, { @required this.isTransitive, DependencyKind kind, this.version, diff --git a/packages/flutter_tools/lib/src/compile.dart b/packages/flutter_tools/lib/src/compile.dart index 72341b693b..4ba74eb666 100644 --- a/packages/flutter_tools/lib/src/compile.dart +++ b/packages/flutter_tools/lib/src/compile.dart @@ -412,7 +412,8 @@ class _RejectRequest extends _CompilationRequest { /// The wrapper is intended to stay resident in memory as user changes, reloads, /// restarts the Flutter app. class ResidentCompiler { - ResidentCompiler(this._sdkRoot, { + ResidentCompiler( + this._sdkRoot, { bool trackWidgetCreation = false, String packagesPath, List fileSystemRoots, diff --git a/packages/flutter_tools/lib/src/dart/pub.dart b/packages/flutter_tools/lib/src/dart/pub.dart index 60bcc8e982..3ca0c05343 100644 --- a/packages/flutter_tools/lib/src/dart/pub.dart +++ b/packages/flutter_tools/lib/src/dart/pub.dart @@ -76,7 +76,7 @@ Future pubGet({ bool upgrade = false, bool offline = false, bool checkLastModified = true, - bool skipPubspecYamlCheck = false + bool skipPubspecYamlCheck = false, }) async { directory ??= fs.currentDirectory.path; diff --git a/packages/flutter_tools/lib/src/devfs.dart b/packages/flutter_tools/lib/src/devfs.dart index 73e0214d81..021c5b98bd 100644 --- a/packages/flutter_tools/lib/src/devfs.dart +++ b/packages/flutter_tools/lib/src/devfs.dart @@ -241,7 +241,7 @@ class ServiceProtocolDevFSOperations implements DevFSOperations { try { return await vmService.vm.invokeRpcRaw( '_writeDevFSFile', - params: { + params: { 'fsName': fsName, 'uri': deviceUri.toString(), 'fileContents': fileContents, @@ -337,8 +337,11 @@ class _DevFSHttpWriter { // Basic statistics for DevFS update operation. class UpdateFSReport { - UpdateFSReport({bool success = false, - int invalidatedSourcesCount = 0, int syncedBytes = 0}) { + UpdateFSReport({ + bool success = false, + int invalidatedSourcesCount = 0, + int syncedBytes = 0, + }) { _success = success; _invalidatedSourcesCount = invalidatedSourcesCount; _syncedBytes = syncedBytes; diff --git a/packages/flutter_tools/lib/src/device.dart b/packages/flutter_tools/lib/src/device.dart index 15ab8833d0..1ff9e3840b 100644 --- a/packages/flutter_tools/lib/src/device.dart +++ b/packages/flutter_tools/lib/src/device.dart @@ -364,7 +364,8 @@ abstract class Device { } class DebuggingOptions { - DebuggingOptions.enabled(this.buildInfo, { + DebuggingOptions.enabled( + this.buildInfo, { this.startPaused = false, this.enableSoftwareRendering = false, this.skiaDeterministicRendering = false, diff --git a/packages/flutter_tools/lib/src/fuchsia/fuchsia_device.dart b/packages/flutter_tools/lib/src/fuchsia/fuchsia_device.dart index e5ed42ed7d..9aa1fb57f4 100644 --- a/packages/flutter_tools/lib/src/fuchsia/fuchsia_device.dart +++ b/packages/flutter_tools/lib/src/fuchsia/fuchsia_device.dart @@ -213,8 +213,7 @@ class FuchsiaDevice extends Device { _FuchsiaPortForwarder _portForwarder; @override - void clearLogs() { - } + void clearLogs() { } @override bool get supportsScreenshot => false; @@ -306,7 +305,9 @@ class FuchsiaDevice extends Device { } class FuchsiaIsolateDiscoveryProtocol { - FuchsiaIsolateDiscoveryProtocol(this._device, this._isolateName, [ + FuchsiaIsolateDiscoveryProtocol( + this._device, + this._isolateName, [ this._vmServiceConnector = _kDefaultFuchsiaIsolateDiscoveryConnector, this._pollOnce = false, ]); diff --git a/packages/flutter_tools/lib/src/ios/code_signing.dart b/packages/flutter_tools/lib/src/ios/code_signing.dart index 3820e87b09..9111b5fcfe 100644 --- a/packages/flutter_tools/lib/src/ios/code_signing.dart +++ b/packages/flutter_tools/lib/src/ios/code_signing.dart @@ -163,7 +163,7 @@ Future> getCodeSigningIdentityDevelopmentTeam({ if (await opensslProcess.exitCode != 0) return null; - return { + return { 'DEVELOPMENT_TEAM': _certificateOrganizationalUnitExtractionPattern .firstMatch(opensslOutput) ?.group(1), diff --git a/packages/flutter_tools/lib/src/ios/devices.dart b/packages/flutter_tools/lib/src/ios/devices.dart index 8903b5ad41..efa4962e72 100644 --- a/packages/flutter_tools/lib/src/ios/devices.dart +++ b/packages/flutter_tools/lib/src/ios/devices.dart @@ -389,8 +389,7 @@ class IOSDevice extends Device { DevicePortForwarder get portForwarder => _portForwarder ??= _IOSDevicePortForwarder(this); @override - void clearLogs() { - } + void clearLogs() { } @override bool get supportsScreenshot => iMobileDevice.isInstalled; diff --git a/packages/flutter_tools/lib/src/ios/mac.dart b/packages/flutter_tools/lib/src/ios/mac.dart index 50bdf32c4f..19410efc64 100644 --- a/packages/flutter_tools/lib/src/ios/mac.dart +++ b/packages/flutter_tools/lib/src/ios/mac.dart @@ -625,15 +625,13 @@ Future diagnoseXcodeBuildFailure(XcodeBuildResult result) async { } class XcodeBuildResult { - XcodeBuildResult( - { - @required this.success, - this.output, - this.stdout, - this.stderr, - this.xcodeBuildExecution, - } - ); + XcodeBuildResult({ + @required this.success, + this.output, + this.stdout, + this.stderr, + this.xcodeBuildExecution, + }); final bool success; final String output; @@ -645,14 +643,12 @@ class XcodeBuildResult { /// Describes an invocation of a Xcode build command. class XcodeBuildExecution { - XcodeBuildExecution( - { - @required this.buildCommands, - @required this.appDirectory, - @required this.buildForPhysicalDevice, - @required this.buildSettings, - } - ); + XcodeBuildExecution({ + @required this.buildCommands, + @required this.appDirectory, + @required this.buildForPhysicalDevice, + @required this.buildSettings, + }); /// The original list of Xcode build commands used to produce this build result. final List buildCommands; diff --git a/packages/flutter_tools/lib/src/macos/application_package.dart b/packages/flutter_tools/lib/src/macos/application_package.dart index 31fd59edb9..28d8ade171 100644 --- a/packages/flutter_tools/lib/src/macos/application_package.dart +++ b/packages/flutter_tools/lib/src/macos/application_package.dart @@ -9,7 +9,7 @@ import '../base/file_system.dart'; import '../globals.dart'; import '../ios/plist_utils.dart' as plist; - /// Tests whether a [FileSystemEntity] is an macOS bundle directory +/// Tests whether a [FileSystemEntity] is an macOS bundle directory bool _isBundleDirectory(FileSystemEntity entity) => entity is Directory && entity.path.endsWith('.app'); diff --git a/packages/flutter_tools/lib/src/resident_runner.dart b/packages/flutter_tools/lib/src/resident_runner.dart index 16eb458032..f38cc5bb3a 100644 --- a/packages/flutter_tools/lib/src/resident_runner.dart +++ b/packages/flutter_tools/lib/src/resident_runner.dart @@ -28,7 +28,8 @@ import 'run_hot.dart'; import 'vmservice.dart'; class FlutterDevice { - FlutterDevice(this.device, { + FlutterDevice( + this.device, { @required this.trackWidgetCreation, this.dillOutputPath, this.fileSystemRoots, @@ -48,7 +49,8 @@ class FlutterDevice { ); /// Create a [FlutterDevice] with optional code generation enabled. - static Future create(Device device, { + static Future create( + Device device, { @required bool trackWidgetCreation, String dillOutputPath, List fileSystemRoots, @@ -482,7 +484,8 @@ class FlutterDevice { // Shared code between different resident application runners. abstract class ResidentRunner { - ResidentRunner(this.flutterDevices, { + ResidentRunner( + this.flutterDevices, { this.target, this.debuggingOptions, this.usesTerminalUI = true, diff --git a/packages/flutter_tools/lib/src/run_hot.dart b/packages/flutter_tools/lib/src/run_hot.dart index 50f445d784..1bfe83296e 100644 --- a/packages/flutter_tools/lib/src/run_hot.dart +++ b/packages/flutter_tools/lib/src/run_hot.dart @@ -93,8 +93,11 @@ class HotRunner extends ResidentRunner { benchmarkData[name].add(value); } - Future _reloadSourcesService(String isolateId, - { bool force = false, bool pause = false }) async { + Future _reloadSourcesService( + String isolateId, { + bool force = false, + bool pause = false, + }) async { // TODO(cbernaschina): check that isolateId is the id of the UI isolate. final OperationResult result = await restart(pauseAfterRestart: pause); if (!result.isOk) { @@ -589,7 +592,7 @@ class HotRunner extends ResidentRunner { } } - Future _reloadSources({ bool pause = false, String reason, void Function(String message) onSlow, }) async { + Future _reloadSources({ bool pause = false, String reason, void Function(String message) onSlow }) async { final Map analyticsParameters = {}; if (reason != null) { analyticsParameters[kEventReloadReasonParameterName] = reason; diff --git a/packages/flutter_tools/lib/src/vmservice.dart b/packages/flutter_tools/lib/src/vmservice.dart index 545e77319a..7adcd72f4e 100644 --- a/packages/flutter_tools/lib/src/vmservice.dart +++ b/packages/flutter_tools/lib/src/vmservice.dart @@ -424,8 +424,10 @@ abstract class ServiceObject { /// Factory constructor given a [ServiceObjectOwner] and a service map, /// upgrade the map into a proper [ServiceObject]. This function always /// returns a new instance and does not interact with caches. - factory ServiceObject._fromMap(ServiceObjectOwner owner, - Map map) { + factory ServiceObject._fromMap( + ServiceObjectOwner owner, + Map map, + ) { if (map == null) return null; @@ -873,7 +875,7 @@ class VM extends ServiceObjectOwner { /// Create a new development file system on the device. Future> createDevFS(String fsName) { - return invokeRpcRaw('_createDevFS', params: {'fsName': fsName}); + return invokeRpcRaw('_createDevFS', params: {'fsName': fsName}); } /// List the development file system son the device. @@ -928,7 +930,7 @@ class VM extends ServiceObjectOwner { Uri assetsDirectory, ) { return invokeRpc('_flutter.runInView', - params: { + params: { 'viewId': viewId, 'mainScript': main.toString(), 'packagesFile': packages.toString(), diff --git a/packages/flutter_tools/lib/src/vscode/vscode.dart b/packages/flutter_tools/lib/src/vscode/vscode.dart index f2fac47b7d..0eab763631 100644 --- a/packages/flutter_tools/lib/src/vscode/vscode.dart +++ b/packages/flutter_tools/lib/src/vscode/vscode.dart @@ -57,8 +57,11 @@ class VsCode { } } - factory VsCode.fromDirectory(String installPath, String extensionDirectory, - { String edition }) { + factory VsCode.fromDirectory( + String installPath, + String extensionDirectory, { + String edition, + }) { final String packageJsonPath = fs.path.join(installPath, 'resources', 'app', 'package.json'); final String versionString = _getVersionFromPackageJson(packageJsonPath); diff --git a/packages/flutter_tools/test/artifacts_test.dart b/packages/flutter_tools/test/artifacts_test.dart index 986bff073c..00b17e45b4 100644 --- a/packages/flutter_tools/test/artifacts_test.dart +++ b/packages/flutter_tools/test/artifacts_test.dart @@ -35,7 +35,7 @@ void main() { artifacts.getArtifactPath(Artifact.flutterTester), fs.path.join(tempDir.path, 'bin', 'cache', 'artifacts', 'engine', 'linux-x64', 'flutter_tester'), ); - }, overrides: { + }, overrides: { Cache: () => Cache(rootOverride: tempDir), Platform: () => FakePlatform(operatingSystem: 'linux'), }); @@ -53,7 +53,7 @@ void main() { artifacts.getEngineType(TargetPlatform.darwin_x64), 'darwin-x64', ); - }, overrides: { + }, overrides: { Cache: () => Cache(rootOverride: tempDir), Platform: () => FakePlatform(operatingSystem: 'linux'), }); @@ -89,7 +89,7 @@ void main() { artifacts.getArtifactPath(Artifact.engineDartSdkPath), fs.path.join(tempDir.path, 'out', 'host_debug_unopt', 'dart-sdk'), ); - }, overrides: { + }, overrides: { Platform: () => FakePlatform(operatingSystem: 'linux'), }); @@ -106,7 +106,7 @@ void main() { artifacts.getEngineType(TargetPlatform.darwin_x64), 'android_debug_unopt', ); - }, overrides: { + }, overrides: { Platform: () => FakePlatform(operatingSystem: 'linux'), }); }); diff --git a/packages/flutter_tools/test/base/logger_test.dart b/packages/flutter_tools/test/base/logger_test.dart index a1e7182c21..99c532f27d 100644 --- a/packages/flutter_tools/test/base/logger_test.dart +++ b/packages/flutter_tools/test/base/logger_test.dart @@ -36,7 +36,7 @@ void main() { r'\[ (?: {0,2}\+[0-9]{1,3} ms| )\] Oooh, I do I do I do\n$')); expect(mockLogger.traceText, ''); expect(mockLogger.errorText, matches( r'^\[ (?: {0,2}\+[0-9]{1,3} ms| )\] Helpless!\n$')); - }, overrides: { + }, overrides: { OutputPreferences: () => OutputPreferences(showColor: false), Platform: _kNoAnsiPlatform, }); @@ -57,7 +57,7 @@ void main() { expect( mockLogger.errorText, matches('^$red' r'\[ (?: {0,2}\+[0-9]{1,3} ms| )\] ' '${bold}Helpless!$resetBold$resetColor' r'\n$')); - }, overrides: { + }, overrides: { OutputPreferences: () => OutputPreferences(showColor: true), Platform: () => FakePlatform()..stdoutSupportsAnsi = true, }); diff --git a/packages/flutter_tools/test/base/os_utils_test.dart b/packages/flutter_tools/test/base/os_utils_test.dart index 6df34075cc..ddfbefec2e 100644 --- a/packages/flutter_tools/test/base/os_utils_test.dart +++ b/packages/flutter_tools/test/base/os_utils_test.dart @@ -32,7 +32,7 @@ void main() { // rwxr--r-- expect(mode.substring(0, 3), endsWith('x')); } - }, overrides: { + }, overrides: { OperatingSystemUtils: () => OperatingSystemUtils(), }); }); diff --git a/packages/flutter_tools/test/base/terminal_test.dart b/packages/flutter_tools/test/base/terminal_test.dart index d5b4ef7c50..61268eaa76 100644 --- a/packages/flutter_tools/test/base/terminal_test.dart +++ b/packages/flutter_tools/test/base/terminal_test.dart @@ -44,7 +44,7 @@ void main() { equals('${AnsiTerminal.colorCode(color)}output${AnsiTerminal.resetColor}'), ); } - }, overrides: { + }, overrides: { OutputPreferences: () => OutputPreferences(showColor: true), Platform: () => FakePlatform()..stdoutSupportsAnsi = true, }); @@ -54,7 +54,7 @@ void main() { terminal.bolden('output'), equals('${AnsiTerminal.bold}output${AnsiTerminal.resetBold}'), ); - }, overrides: { + }, overrides: { OutputPreferences: () => OutputPreferences(showColor: true), Platform: () => FakePlatform()..stdoutSupportsAnsi = true, }); @@ -68,7 +68,7 @@ void main() { terminal.color('non-bold ${terminal.bolden('output')} also non-bold', TerminalColor.blue), equals('${AnsiTerminal.blue}non-bold ${AnsiTerminal.bold}output${AnsiTerminal.resetBold} also non-bold${AnsiTerminal.resetColor}'), ); - }, overrides: { + }, overrides: { OutputPreferences: () => OutputPreferences(showColor: true), Platform: () => FakePlatform()..stdoutSupportsAnsi = true, }); @@ -82,7 +82,7 @@ void main() { terminal.bolden('non-color ${terminal.color('output', TerminalColor.blue)} also non-color'), equals('${AnsiTerminal.bold}non-color ${AnsiTerminal.blue}output${AnsiTerminal.resetColor} also non-color${AnsiTerminal.resetBold}'), ); - }, overrides: { + }, overrides: { OutputPreferences: () => OutputPreferences(showColor: true), Platform: () => FakePlatform()..stdoutSupportsAnsi = true, }); @@ -96,7 +96,7 @@ void main() { terminal.color('magenta ${terminal.color('output', TerminalColor.blue)} also magenta', TerminalColor.magenta), equals('${AnsiTerminal.magenta}magenta ${AnsiTerminal.blue}output${AnsiTerminal.resetColor}${AnsiTerminal.magenta} also magenta${AnsiTerminal.resetColor}'), ); - }, overrides: { + }, overrides: { OutputPreferences: () => OutputPreferences(showColor: true), Platform: () => FakePlatform()..stdoutSupportsAnsi = true, }); @@ -110,7 +110,7 @@ void main() { terminal.bolden('bold ${terminal.bolden('output')} still bold'), equals('${AnsiTerminal.bold}bold output still bold${AnsiTerminal.resetBold}'), ); - }, overrides: { + }, overrides: { OutputPreferences: () => OutputPreferences(showColor: true), Platform: () => FakePlatform()..stdoutSupportsAnsi = true, }); diff --git a/packages/flutter_tools/test/build_info_test.dart b/packages/flutter_tools/test/build_info_test.dart index acd2a341dd..854030e678 100644 --- a/packages/flutter_tools/test/build_info_test.dart +++ b/packages/flutter_tools/test/build_info_test.dart @@ -9,12 +9,10 @@ import 'src/common.dart'; import 'src/context.dart'; void main() { - setUpAll(() { - }); + setUpAll(() { }); group('Validate build number', () { - setUp(() async { - }); + setUp(() async { }); testUsingContext('CFBundleVersion for iOS', () async { String buildName = validatedBuildNumberForPlatform(TargetPlatform.ios, 'xyz'); @@ -34,8 +32,7 @@ void main() { }); group('Validate build name', () { - setUp(() async { - }); + setUp(() async { }); testUsingContext('CFBundleShortVersionString for iOS', () async { String buildName = validatedBuildNameForPlatform(TargetPlatform.ios, 'xyz'); diff --git a/packages/flutter_tools/test/commands/create_test.dart b/packages/flutter_tools/test/commands/create_test.dart index 50d6aaa13c..f070223f90 100644 --- a/packages/flutter_tools/test/commands/create_test.dart +++ b/packages/flutter_tools/test/commands/create_test.dart @@ -24,7 +24,7 @@ import '../src/context.dart'; const String frameworkRevision = '12345678'; const String frameworkChannel = 'omega'; final Generator _kNoColorTerminalPlatform = () => FakePlatform.fromPlatform(const LocalPlatform())..stdoutSupportsAnsi = false; -final Map noColorTerminalOverride = { +final Map noColorTerminalOverride = { Platform: _kNoColorTerminalPlatform, }; const String samplesIndexJson = '''[ @@ -900,7 +900,7 @@ void main() { final List args = [ 'create', '--list-samples', - outputFile + outputFile, ]; await runner.run(args); @@ -918,7 +918,7 @@ void main() { final List args = [ 'create', '--list-samples', - outputFile + outputFile, ]; await expectLater(runner.run(args), throwsToolExit(exitCode: 2, message: 'Failed to write samples')); diff --git a/packages/flutter_tools/test/commands/daemon_test.dart b/packages/flutter_tools/test/commands/daemon_test.dart index 043de1ec69..c419bfaea6 100644 --- a/packages/flutter_tools/test/commands/daemon_test.dart +++ b/packages/flutter_tools/test/commands/daemon_test.dart @@ -123,7 +123,7 @@ void main() { notifyingLogger: notifyingLogger, ); - commands.add({ 'id': 0, 'method': 'app.restart' }); + commands.add({'id': 0, 'method': 'app.restart'}); final Map response = await responses.stream.firstWhere(_notEvent); expect(response['id'], 0); expect(response['error'], contains('appId is required')); @@ -147,7 +147,7 @@ void main() { commands.add({ 'id': 0, 'method': 'app.callServiceExtension', - 'params': { + 'params': { 'methodName': 'ext.flutter.debugPaint', }, }); @@ -171,7 +171,7 @@ void main() { notifyingLogger: notifyingLogger, ); - commands.add({ 'id': 0, 'method': 'app.stop' }); + commands.add({'id': 0, 'method': 'app.stop'}); final Map response = await responses.stream.firstWhere(_notEvent); expect(response['id'], 0); expect(response['error'], contains('appId is required')); @@ -258,7 +258,7 @@ void main() { notifyingLogger: notifyingLogger, ); - commands.add({ 'id': 0, 'method': 'emulator.launch' }); + commands.add({'id': 0, 'method': 'emulator.launch'}); final Map response = await responses.stream.firstWhere(_notEvent); expect(response['id'], 0); expect(response['error'], contains('emulatorId is required')); diff --git a/packages/flutter_tools/test/commands/version_test.dart b/packages/flutter_tools/test/commands/version_test.dart index aed04a24fa..9f00c3dbc5 100644 --- a/packages/flutter_tools/test/commands/version_test.dart +++ b/packages/flutter_tools/test/commands/version_test.dart @@ -108,12 +108,14 @@ class MockProcessManager extends Mock implements ProcessManager { } @override - Future start(List command, - {String workingDirectory, - Map environment, - bool includeParentEnvironment = true, - bool runInShell = false, - ProcessStartMode mode = ProcessStartMode.normal}) { + Future start( + List command, { + String workingDirectory, + Map environment, + bool includeParentEnvironment = true, + bool runInShell = false, + ProcessStartMode mode = ProcessStartMode.normal, + }) { final Completer completer = Completer(); completer.complete(MockProcess()); return completer.future; diff --git a/packages/flutter_tools/test/compile_test.dart b/packages/flutter_tools/test/compile_test.dart index 2bf431ee64..5ec7075703 100644 --- a/packages/flutter_tools/test/compile_test.dart +++ b/packages/flutter_tools/test/compile_test.dart @@ -532,9 +532,12 @@ Future _recompile( mockFrontendServerStdIn._stdInWrites.clear(); } -Future _accept(StreamController> streamController, - ResidentCompiler generator, MockStdIn mockFrontendServerStdIn, - String expected) async { +Future _accept( + StreamController> streamController, + ResidentCompiler generator, + MockStdIn mockFrontendServerStdIn, + String expected, +) async { // Put content into the output stream after generator.recompile gets // going few lines below, resets completer. generator.accept(); @@ -544,9 +547,13 @@ Future _accept(StreamController> streamController, mockFrontendServerStdIn._stdInWrites.clear(); } -Future _reject(StreamController> streamController, - ResidentCompiler generator, MockStdIn mockFrontendServerStdIn, - String mockCompilerOutput, String expected) async { +Future _reject( + StreamController> streamController, + ResidentCompiler generator, + MockStdIn mockFrontendServerStdIn, + String mockCompilerOutput, + String expected, +) async { // Put content into the output stream after generator.recompile gets // going few lines below, resets completer. scheduleMicrotask(() { diff --git a/packages/flutter_tools/test/crash_reporting_test.dart b/packages/flutter_tools/test/crash_reporting_test.dart index 9db92c0590..8acabe2449 100644 --- a/packages/flutter_tools/test/crash_reporting_test.dart +++ b/packages/flutter_tools/test/crash_reporting_test.dart @@ -151,7 +151,7 @@ void main() { 'version': 'test-version', }, )); - }, overrides: { + }, overrides: { Platform: () => FakePlatform( operatingSystem: 'linux', environment: { diff --git a/packages/flutter_tools/test/hot_test.dart b/packages/flutter_tools/test/hot_test.dart index 0425139d54..37ac83fdee 100644 --- a/packages/flutter_tools/test/hot_test.dart +++ b/packages/flutter_tools/test/hot_test.dart @@ -237,7 +237,7 @@ void main() { ]; await HotRunner(devices).cleanupAfterSignal(); expect(shutdownTestingConfig.shutdownHookCalled, true); - }, overrides: { + }, overrides: { Artifacts: () => mockArtifacts, HotRunnerConfig: () => shutdownTestingConfig, }); @@ -252,7 +252,7 @@ void main() { ]; await HotRunner(devices).preStop(); expect(shutdownTestingConfig.shutdownHookCalled, true); - }, overrides: { + }, overrides: { Artifacts: () => mockArtifacts, HotRunnerConfig: () => shutdownTestingConfig, }); diff --git a/packages/flutter_tools/test/ios/code_signing_test.dart b/packages/flutter_tools/test/ios/code_signing_test.dart index c03773b5b7..9d381a054a 100644 --- a/packages/flutter_tools/test/ios/code_signing_test.dart +++ b/packages/flutter_tools/test/ios/code_signing_test.dart @@ -146,7 +146,7 @@ void main() { expect(testLogger.statusText, contains('iPhone Developer: Profile 1 (1111AAAA11)')); expect(testLogger.errorText, isEmpty); verify(mockStdIn.write('This is a mock certificate')); - expect(signingConfigs, {'DEVELOPMENT_TEAM': '3333CCCC33'}); + expect(signingConfigs, {'DEVELOPMENT_TEAM': '3333CCCC33'}); }, overrides: { ProcessManager: () => mockProcessManager, @@ -217,7 +217,7 @@ void main() { ); expect(testLogger.errorText, isEmpty); verify(mockOpenSslStdIn.write('This is a mock certificate')); - expect(signingConfigs, {'DEVELOPMENT_TEAM': '4444DDDD44'}); + expect(signingConfigs, {'DEVELOPMENT_TEAM': '4444DDDD44'}); verify(config.setValue('ios-signing-cert', 'iPhone Developer: Profile 3 (3333CCCC33)')); }, @@ -288,7 +288,7 @@ void main() { ); expect(testLogger.errorText, isEmpty); verify(mockOpenSslStdIn.write('This is a mock certificate')); - expect(signingConfigs, {'DEVELOPMENT_TEAM': '5555EEEE55'}); + expect(signingConfigs, {'DEVELOPMENT_TEAM': '5555EEEE55'}); }, overrides: { ProcessManager: () => mockProcessManager, @@ -360,7 +360,7 @@ void main() { ); expect(testLogger.errorText, isEmpty); verify(mockOpenSslStdIn.write('This is a mock certificate')); - expect(signingConfigs, {'DEVELOPMENT_TEAM': '4444DDDD44'}); + expect(signingConfigs, {'DEVELOPMENT_TEAM': '4444DDDD44'}); }, overrides: { ProcessManager: () => mockProcessManager, @@ -432,7 +432,7 @@ void main() { testLogger.statusText, contains('Certificate choice "iPhone Developer: Profile 3 (3333CCCC33)"'), ); - expect(signingConfigs, {'DEVELOPMENT_TEAM': '4444DDDD44'}); + expect(signingConfigs, {'DEVELOPMENT_TEAM': '4444DDDD44'}); verify(config.setValue('ios-signing-cert', 'iPhone Developer: Profile 3 (3333CCCC33)')); }, overrides: { diff --git a/packages/flutter_tools/test/version_test.dart b/packages/flutter_tools/test/version_test.dart index 9a57f9cb01..328e7030c6 100644 --- a/packages/flutter_tools/test/version_test.dart +++ b/packages/flutter_tools/test/version_test.dart @@ -403,11 +403,12 @@ void main() { expect(GitTagVersion.parse('v1.2.3-4-gx$hash').frameworkVersionFor(hash), '0.0.0-unknown'); expect(testLogger.statusText, ''); expect(testLogger.errorText, ''); - expect(testLogger.traceText, + expect( + testLogger.traceText, 'Could not interpret results of "git describe": x1.2.3-4-gabcdef\n' 'Could not interpret results of "git describe": v1.0.0-unknown-0-gabcdef\n' 'Could not interpret results of "git describe": beta-1-gabcdef\n' - 'Could not interpret results of "git describe": v1.2.3-4-gxabcdef\n' + 'Could not interpret results of "git describe": v1.2.3-4-gxabcdef\n', ); }); } diff --git a/packages/flutter_tools/tool/daemon_client.dart b/packages/flutter_tools/tool/daemon_client.dart index 8051c8a58a..6314565d80 100644 --- a/packages/flutter_tools/tool/daemon_client.dart +++ b/packages/flutter_tools/tool/daemon_client.dart @@ -40,7 +40,7 @@ Future main() async { } else if (words.first == 'start') { _send({ 'method': 'app.start', - 'params': { + 'params': { 'deviceId': words[1], 'projectDirectory': words[2], 'launchMode': words[3], @@ -50,7 +50,7 @@ Future main() async { if (words.length > 1) { _send({ 'method': 'app.stop', - 'params': {'appId': words[1]}, + 'params': {'appId': words[1]}, }); } else { _send({'method': 'app.stop'}); @@ -59,7 +59,7 @@ Future main() async { if (words.length > 1) { _send({ 'method': 'app.restart', - 'params': {'appId': words[1]}, + 'params': {'appId': words[1]}, }); } else { _send({'method': 'app.restart'});