FastCover constructor

const FastCover({
  1. Key? key,
  2. Color? backgroundColor,
  3. Widget? child,
})

Implementation

const FastCover({
  super.key,
  this.backgroundColor,
  this.child,
});