AvatarStyle constructor

const AvatarStyle({
  1. double? outerViewWidth,
  2. Color? outerViewBackgroundColor,
  3. double? outerViewSpacing,
  4. TextStyle? nameTextStyle,
  5. double? outerBorderRadius,
  6. BoxBorder? outerViewBorder,
  7. double? width,
  8. double? height,
  9. Color? background,
  10. BoxBorder? border,
  11. double? borderRadius,
  12. Gradient? gradient,
})

Implementation

const AvatarStyle({
  this.outerViewWidth,
  this.outerViewBackgroundColor,
  this.outerViewSpacing,
  this.nameTextStyle,
  this.outerBorderRadius,
  this.outerViewBorder,
  super.width,
  super.height,
  super.background,
  super.border,
  super.borderRadius,
  super.gradient,
});