draw method
Implementation
Widget draw() {
return Stack(
fit: StackFit.expand,
children: [
WBlur(
sigma: blurSigma,
child: RawImage(
fit: BoxFit.fill,
image: image,
),
),
if (child != null) child!,
],
);
}