FastBoxPlaceholder constructor

const FastBoxPlaceholder({
  1. Key? key,
  2. double? height,
  3. double? width,
  4. Color? color,
  5. Widget? child,
})

Implementation

const FastBoxPlaceholder({
  super.key,
  this.height,
  this.width,
  this.color,
  this.child,
});