createResizedImage function
create resized icon image
Implementation
Image createResizedImage(IosIconTemplate template, Image image) {
if (image.width >= template.size) {
return copyResize(
image,
width: template.size,
height: template.size,
interpolation: Interpolation.average,
);
} else {
return copyResize(
image,
width: template.size,
height: template.size,
interpolation: Interpolation.linear,
);
}
}