From fc77610dd6e4c47ede2dcc383ebf0ecac9e694b0 Mon Sep 17 00:00:00 2001 From: Swayam221 <68892315+Swayam221@users.noreply.github.com> Date: Mon, 1 Mar 2021 14:06:03 +0530 Subject: [PATCH] =?UTF-8?q?changed=20'constrains'=20to=20'constraints'=20i?= =?UTF-8?q?n=20ChildLayoutHelper.dryLayoutC=E2=80=A6=20(#76963)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/flutter/lib/src/rendering/layout_helper.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter/lib/src/rendering/layout_helper.dart b/packages/flutter/lib/src/rendering/layout_helper.dart index 636de83bcc..d0bb135743 100644 --- a/packages/flutter/lib/src/rendering/layout_helper.dart +++ b/packages/flutter/lib/src/rendering/layout_helper.dart @@ -33,8 +33,8 @@ class ChildLayoutHelper { /// /// * [layoutChild], which actually lays out the child with the given /// constraints. - static Size dryLayoutChild(RenderBox child, BoxConstraints constrains) { - return child.getDryLayout(constrains); + static Size dryLayoutChild(RenderBox child, BoxConstraints constraints) { + return child.getDryLayout(constraints); } /// Lays out the [RenderBox] with the given constraints and returns its