pulseTrack static method

Widget pulseTrack({
  1. required Color color,
  2. required double size,
  3. Key? key,
})

Two arc place at 180 degree apart from each other. While rotating shrink to dot. Required color is applied to both arc.

Implementation

static Widget pulseTrack({
  required Color color,
  required double size,
  Key? key,
}) {
  return PulseTrack(color: color, size: size, key: key);
}