AccountInfoSection constructor

const AccountInfoSection({
  1. Key? key,
  2. required String accountInfoLabel,
  3. required String accountEmail,
  4. required String accountPhone,
  5. required String accountPassword,
  6. required void onEditAccountPressed(),
  7. required void onPasswordArrowClick(),
})

Implementation

const AccountInfoSection({
  Key? key,
  required this.accountInfoLabel,
  required this.accountEmail,
  required this.accountPhone,
  required this.accountPassword,
  required this.onEditAccountPressed,
  required this.onPasswordArrowClick,
}) : super(key: key);