appAvatar constructor

appAvatar({
  1. Key? key,
  2. double? size,
  3. Color? borderColor,
  4. required String? imageUrl,
  5. bool isClickable = true,
  6. bool? isFullUrl = false,
  7. bool isFromAsset = false,
  8. bool shouldPrintLog = false,
  9. bool withBorderDivider = false,
  10. double? borderDividersize,
  11. String? placeholderImage,
  12. bool? withBorder,
  13. String? name,
  14. Color? color,
  15. Color? textColor,
  16. double? borderSize,
})

Implementation

appAvatar(
    {Key? key,
    this.size,
    this.borderColor,
    required this.imageUrl,
    this.isClickable = true,
    this.isFullUrl = false,
    this.isFromAsset = false,
    this.shouldPrintLog = false,
    this.withBorderDivider = false,
    this.borderDividersize,
    this.placeholderImage,
    this.withBorder,
    this.name,
    this.color,
    this.textColor,
    this.borderSize})
    : super(key: key);