copyResized method
Create a resized copy of this Icon
Implementation
Icon copyResized(int iconSize) {
if (image.width >= iconSize) {
return Icon._(copyResize(
image,
width: iconSize,
height: iconSize,
interpolation: Interpolation.average,
));
} else {
return Icon._(copyResize(
image,
width: iconSize,
height: iconSize,
interpolation: Interpolation.linear,
));
}
}