CircularImageWidget.small constructor

const CircularImageWidget.small({
  1. required String urlOrAsset,
  2. SvgPicture? brokenIcon,
  3. ImageSourceType imageSourceType = ImageSourceType.network,
  4. Color? backgroundColor,
  5. Key? key,
})

_radius = 12, _brokenImageIconSize = 16

Implementation

const CircularImageWidget.small({
  required this.urlOrAsset,
  this.brokenIcon,
  this.imageSourceType = ImageSourceType.network,
  this.backgroundColor,
  super.key,
})  : _radius = 12,
      _brokenImageIconSize = 16;