Face constructor

Face({
  1. Color color = const Color(0xFF616154),
  2. required double animationValue,
  3. required double circleDiameter,
})

Implementation

Face({
  this.color = const Color(0xFF616154),
  required this.animationValue,
  required this.circleDiameter,
});