ProfilImage constructor

const ProfilImage({
  1. Key? key,
  2. bool addLink = true,
  3. required String photoPath,
  4. required String nomComplet,
  5. required double width,
  6. required double height,
  7. required String userId,
  8. BoxShape? boxShape,
  9. bool isConnectedYN = false,
  10. bool isConnectedCheck = false,
  11. GestureTapCallback? onTap,
})

Implementation

const ProfilImage({
  super.key,
  this.addLink = true,
  required this.photoPath,
  required this.nomComplet,
  required this.width,
  required this.height,
  required this.userId,
  this.boxShape,
  this.isConnectedYN = false,
  this.isConnectedCheck = false,
  this.onTap,
});