LoaderProps constructor

const LoaderProps({
  1. LoaderVariant variant = LoaderVariant.spinner,
  2. String size = '32px',
  3. String? color,
  4. String strokeWidth = '3px',
  5. String dotSize = '8px',
})

Implementation

const LoaderProps({
  this.variant = LoaderVariant.spinner,
  this.size = '32px',
  this.color,
  this.strokeWidth = '3px',
  this.dotSize = '8px',
});