Ring1 constructor

const Ring1({
  1. Key? key,
  2. Color color = Colors.black,
  3. double size = 30.0,
  4. Duration duration = const Duration(seconds: 1),
})

Implementation

const Ring1({
  super.key,
  this.color = Colors.black,
  this.size = 30.0,
  this.duration = const Duration(seconds: 1),
});