Skip to content

Commit

Permalink
feat: My account, account_popup, fields above constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalheartxs committed Sep 23, 2024
1 parent a6f7037 commit 2d02b16
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions catalyst_voices/lib/pages/account/account_popup.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ class AccountPopup extends StatelessWidget {
}

class _Header extends StatelessWidget {
final String accountLetter;
final String walletName;
final String walletBalance;
final String accountType;
final String walletAddress;

const _Header({
required this.accountLetter,
required this.walletName,
Expand All @@ -89,12 +95,6 @@ class _Header extends StatelessWidget {
required this.walletAddress,
});

final String accountLetter;
final String walletName;
final String walletBalance;
final String accountType;
final String walletAddress;

@override
Widget build(BuildContext context) {
return Column(
Expand Down

0 comments on commit 2d02b16

Please sign in to comment.