LoadingPlaceholderTile constructor

const LoadingPlaceholderTile({
  1. Key? key,
  2. Duration pulseDuration = const Duration(milliseconds: 1200),
  3. Color? pulseStartColor,
  4. Color? pulseEndColor,
})

Implementation

const LoadingPlaceholderTile({
  super.key,
  this.pulseDuration = const Duration(milliseconds: 1200),
  this.pulseStartColor,
  this.pulseEndColor,
});