diff --git a/packages/flutter/lib/src/widgets/framework.dart b/packages/flutter/lib/src/widgets/framework.dart index ff8b39ace50..816057ddd25 100644 --- a/packages/flutter/lib/src/widgets/framework.dart +++ b/packages/flutter/lib/src/widgets/framework.dart @@ -154,7 +154,7 @@ abstract class GlobalKey> extends Key { /// /// The label is purely for debugging and not used for comparing the identity /// of the key. - const factory GlobalKey({ String debugLabel }) = LabeledGlobalKey._; // the label is purely for debugging purposes and is otherwise ignored + factory GlobalKey({ String debugLabel }) = LabeledGlobalKey._; // the label is purely for debugging purposes and is otherwise ignored /// Creates a global key without a label. ///