NiceLoadingState constructor

const NiceLoadingState({
  1. Key? key,
  2. String? message,
  3. NiceLoadingType type = NiceLoadingType.circular,
  4. double? progress,
  5. Color? color,
  6. double size = 48,
  7. EdgeInsets? padding,
})

Implementation

const NiceLoadingState({
  super.key,
  this.message,
  this.type = NiceLoadingType.circular,
  this.progress,
  this.color,
  this.size = 48,
  this.padding,
});