AnimatedProfileAvatar constructor

const AnimatedProfileAvatar({
  1. Key? key,
  2. required double size,
  3. required Color borderColor,
  4. double borderWidth = 2.0,
  5. String? profileImagePath,
  6. String? userName,
  7. String? status,
  8. dynamic onTap(
    1. BuildContext
    )?,
  9. VoidCallback? onLogout,
})

Implementation

const AnimatedProfileAvatar({
  super.key,
  required this.size,
  required this.borderColor,
  this.borderWidth = 2.0,
  this.profileImagePath,
  this.userName,
  this.status,
  this.onTap,
  this.onLogout,
});