getImageFromPlatformModel static method
Widget
getImageFromPlatformModel({
- PlatformMediumModel? platformMediumModel,
- double? height,
- double? width,
- BoxFit? fit,
- Alignment? alignment,
Implementation
static Widget getImageFromPlatformModel(
{PlatformMediumModel? platformMediumModel,
double? height,
double? width,
BoxFit? fit,
Alignment? alignment}) {
if (platformMediumModel == null) {
return Image(
image: AssetImage('assets/images/image_not_available.png'),
height: height,
width: width,
alignment: alignment!,
);
} else {
return getImageFromURL(
url: platformMediumModel.url!, height: height, width: width);
}
}