LokotroLoadingSpinner constructor

const LokotroLoadingSpinner({
  1. Key? key,
  2. double size = 40.0,
  3. Color? color,
  4. double strokeWidth = 4.0,
  5. String? message,
  6. TextStyle? messageStyle,
  7. Duration animationDuration = const Duration(milliseconds: 1000),
})

Implementation

const LokotroLoadingSpinner({
  super.key,
  this.size = 40.0,
  this.color,
  this.strokeWidth = 4.0,
  this.message,
  this.messageStyle,
  this.animationDuration = const Duration(milliseconds: 1000),
});