auroraWave static method

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

Four dots shrink to the center and expand and rotates 315 degree. Required color is applied to four dots.

Implementation

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