LokotroCircularImageWidget constructor

const LokotroCircularImageWidget({
  1. Key? key,
  2. String? imageUrl,
  3. String? assetPath,
  4. IconData? fallbackIcon,
  5. double size = 60.0,
  6. BoxFit fit = BoxFit.cover,
  7. Color? backgroundColor,
  8. Color? borderColor,
  9. double borderWidth = 2.0,
  10. List<BoxShadow>? boxShadow,
  11. Widget? placeholder,
  12. Widget? errorWidget,
})

Implementation

const LokotroCircularImageWidget({
  super.key,
  this.imageUrl,
  this.assetPath,
  this.fallbackIcon,
  this.size = 60.0,
  this.fit = BoxFit.cover,
  this.backgroundColor,
  this.borderColor,
  this.borderWidth = 2.0,
  this.boxShadow,
  this.placeholder,
  this.errorWidget,
});