TenAvatar constructor

const TenAvatar({
  1. required double size,
  2. BoxShape shape = BoxShape.circle,
  3. Widget? child,
  4. Color? backgroundColor,
  5. double radius = 16,
  6. Key? key,
})

Implementation

const TenAvatar(
    {required this.size,
    this.shape = BoxShape.circle,
    this.child,
    this.backgroundColor,
    this.radius = 16,
    super.key});