LoadingState constructor

const LoadingState({
  1. List<String> spinnerFrames = defaultSpinnerFrames,
  2. String? message,
  3. Duration duration = defaultDuration,
  4. TextStyle style = const TextStyle(fontWeight: FontWeight.dim),
})

Implementation

const LoadingState({
  this.spinnerFrames = defaultSpinnerFrames,
  this.message,
  this.duration = defaultDuration,
  this.style = const TextStyle(fontWeight: FontWeight.dim),
});