HelixLoader constructor

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

Implementation

const HelixLoader({
  Key? key,
  this.size = 45.0,
  this.color = Colors.black,
  this.duration = const Duration(seconds: 2),
}) : super(key: key);