fullScreenImageDecoration static method
Implementation
static BoxDecoration fullScreenImageDecoration(String imageName) {
return BoxDecoration(
image: DecorationImage(
image: AssetImage(imageName),
fit: BoxFit.fill,
),
shape: BoxShape.rectangle,
);
}