placeHolderWidget function
- {String? placeHolderImage,
- double? height,
- double? width,
- BoxFit? fit,
- AlignmentGeometry? alignment}
Implementation
Widget placeHolderWidget(
{String? placeHolderImage,
double? height,
double? width,
BoxFit? fit,
AlignmentGeometry? alignment}) {
return PlaceHolderWidget(
height: height,
width: width,
alignment: alignment ?? Alignment.center,
);
}