From 985e2699937176a68f81c8b2abe20432cd986e5c Mon Sep 17 00:00:00 2001 From: julian Date: Mon, 15 Apr 2024 15:47:32 -0600 Subject: [PATCH] constructor clean up --- .../addresses/sub_widgets/desktop_address_list.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages_desktop_specific/addresses/sub_widgets/desktop_address_list.dart b/lib/pages_desktop_specific/addresses/sub_widgets/desktop_address_list.dart index 9a9591e6c..7b94575b4 100644 --- a/lib/pages_desktop_specific/addresses/sub_widgets/desktop_address_list.dart +++ b/lib/pages_desktop_specific/addresses/sub_widgets/desktop_address_list.dart @@ -29,10 +29,10 @@ import 'package:stackwallet/widgets/textfield_icon_button.dart'; class DesktopAddressList extends ConsumerStatefulWidget { const DesktopAddressList({ - Key? key, + super.key, required this.walletId, this.searchHeight, - }) : super(key: key); + }); final String walletId; final double? searchHeight;