NUIOutlineCircleAvatar constructor

NUIOutlineCircleAvatar({
  1. Key? key,
  2. required ImageProvider<Object> image,
  3. required double radius,
  4. double thickness = 1,
  5. Color outlineColor = NUIColors.NUIBlack,
  6. Color innerColor = NUIColors.NUIWhite,
})

Implementation

NUIOutlineCircleAvatar({
  Key? key,
  required this.image,
  required this.radius,
  this.thickness = 1,
  this.outlineColor = NUIColors.NUIBlack,
  this.innerColor = NUIColors.NUIWhite
}) : super(key: key);