Skip to content

Commit

Permalink
SemanticsUpdateBuilderNew.updateNode(): make identifier parameter r…
Browse files Browse the repository at this point in the history
…equired
  • Loading branch information
bartekpacia committed Nov 27, 2023
1 parent f760cfa commit c50bcee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/ui/semantics.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ abstract class SemanticsUpdateBuilderNew {
required double elevation,
required double thickness,
required Rect rect,
String identifier,
required String identifier,
required String label,
required List<StringAttribute> labelAttributes,
required String value,
Expand Down Expand Up @@ -1216,7 +1216,7 @@ base class _NativeSemanticsUpdateBuilderNew extends NativeFieldWrapperClass1 imp
required double elevation,
required double thickness,
required Rect rect,
String? identifier,
required String identifier,
required String label,
required List<StringAttribute> labelAttributes,
required String value,
Expand Down Expand Up @@ -1255,7 +1255,7 @@ base class _NativeSemanticsUpdateBuilderNew extends NativeFieldWrapperClass1 imp
rect.bottom,
elevation,
thickness,
identifier ?? '',
identifier,
label,
labelAttributes,
value,
Expand Down Expand Up @@ -1333,7 +1333,7 @@ base class _NativeSemanticsUpdateBuilderNew extends NativeFieldWrapperClass1 imp
double bottom,
double elevation,
double thickness,
String? identifier,
String identifier,
String label,
List<StringAttribute> labelAttributes,
String value,
Expand Down

0 comments on commit c50bcee

Please sign in to comment.