Skip to content

Commit

Permalink
added trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
MayankJha014 committed Jan 3, 2025
1 parent 8d67599 commit fc3fd62
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -578,9 +578,10 @@ Future<void> main() async {
suffixIcon: IconButton(
key: const Key('LastNameEditIcon'),
onPressed: () {
FocusScope.of(tester.element(
find.byKey(const Key('LastNameTextField'))))
.requestFocus(model.lastNameFocus);
FocusScope.of(
tester
.element(find.byKey(const Key('LastNameTextField'))),
).requestFocus(model.lastNameFocus);
},
icon: const Icon(Icons.edit),
),
Expand Down

0 comments on commit fc3fd62

Please sign in to comment.