UserImage constructor

const UserImage({
  1. Key? key,
  2. File? pickedImage,
  3. required String? imageLink,
  4. dynamic onPick(
    1. File pickedFile
    )?,
  5. double? radius,
  6. String? placeHolderPath,
  7. double? pickMaxWidth,
  8. double? pickMaxHeight,
})

Implementation

const UserImage({
  super.key,
  this.pickedImage,
  required this.imageLink,
  this.onPick,
  this.radius,
  this.placeHolderPath,
  this.pickMaxWidth,
  this.pickMaxHeight,
});