UILoadingThemeData.config constructor

const UILoadingThemeData.config({
  1. double? size = 24,
  2. double? strokeWidth = 4,
  3. Color? backgroundColor = Colors.grey,
  4. Color? foregroundColor = Colors.white70,
  5. Color? primary = Colors.blue,
})

Implementation

const UILoadingThemeData.config({
  this.size = 24,
  this.strokeWidth = 4,
  this.backgroundColor = Colors.grey,
  this.foregroundColor = Colors.white70,
  this.primary = Colors.blue,
});