Backdrop constructor
const
Backdrop({})
Implementation
const Backdrop({
this.width,
this.fading = false,
this.moving = true,
this.overlay = false,
this.overlayOpacity = 0.5,
this.color,
this.backgroundGradient,
this.appBar,
this.body,
}) : assert(
overlayOpacity != null &&
0.0 <= overlayOpacity &&
overlayOpacity <= 1.0,
"overlayOpacity double value must between 0.0 and 1.0",
);