VarxAvatar constructor

const VarxAvatar({
  1. Key? key,
  2. String? name,
  3. double? radius,
  4. Color? backgroundColor,
  5. Color? onBackgroundColor,
  6. ImageProvider<Object>? backgroundImage,
})

Implementation

const VarxAvatar({
  Key? key,
  this.name,
  this.radius,
  this.backgroundColor,
  this.onBackgroundColor,
  this.backgroundImage,
}) : super(key: key);