SFAvatar constructor

const SFAvatar({
  1. Key? key,
  2. Widget? child,
  3. double borderWidth = 0.5,
  4. double padding = 0,
  5. double? size = 42,
  6. Color? backgroundColor,
  7. Color? borderColor,
})

Implementation

const SFAvatar({
  super.key,
  this.child,
  this.borderWidth = 0.5,
  this.padding = 0,
  this.size = 42,
  this.backgroundColor,
  this.borderColor,
});