CustomProfileImageSelector constructor

const CustomProfileImageSelector({
  1. Key? key,
  2. required CustomImagesSelectorController controller,
  3. bool enabled = true,
  4. Color? backgroundColor,
  5. Color? borderColor,
  6. double? borderRadius,
})

Implementation

const CustomProfileImageSelector({
  super.key,
  required this.controller,
  this.enabled = true,
  this.backgroundColor, // Default to null
  this.borderColor, // Default to null
  this.borderRadius, // Default to null
});