CustomProfileImage constructor

const CustomProfileImage({
  1. Key? key,
  2. required String initials,
  3. required String? imageUrl,
  4. double? size,
})

CustomProfileImage constructor.

Implementation

const CustomProfileImage({
  super.key,
  required this.initials,
  required this.imageUrl,
  this.size,
});