NeumorphicProgressIndeterminate constructor

const NeumorphicProgressIndeterminate({
  1. Key? key,
  2. double height = 10,
  3. ProgressStyle style = const ProgressStyle(),
  4. Duration duration = const Duration(seconds: 3),
  5. bool reverse = false,
  6. Curve curve = Curves.easeInOut,
})

Implementation

const NeumorphicProgressIndeterminate({
  Key? key,
  this.height = 10,
  this.style = const ProgressStyle(),
  this.duration = const Duration(seconds: 3),
  this.reverse = false,
  this.curve = Curves.easeInOut,
}) : super(key: key);