CompleteProfileScreen constructor

const CompleteProfileScreen({
  1. Key? key,
  2. required bool isWeb,
  3. required Function onUpdateUser,
  4. required Function onSignout,
  5. String email = '',
  6. String? userName = '',
  7. String? phoneNumber = '',
  8. Color? colorPrimary,
  9. Color? backgroundColor,
})

Implementation

const CompleteProfileScreen({
  super.key,
  required this.isWeb,
  required this.onUpdateUser,
  required this.onSignout,
  this.email = '',
  this.userName = '',
  this.phoneNumber = '',
  this.colorPrimary,
  this.backgroundColor,
});