getThumbnailFromPlatformMediumModel static method
Widget
getThumbnailFromPlatformMediumModel({
- PlatformMediumModel? platformMediumModel,
- double? height,
- double? width,
- BoxFit? fit,
- Alignment? alignment,
Implementation
static Widget getThumbnailFromPlatformMediumModel(
{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);
} else {
return getImageFromURL(
url: platformMediumModel.url!, height: height, width: width);
}
}