copyResized method

Icon copyResized(
  1. int iconSize
)

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: .average,
      ),
    );
  } else {
    return Icon._(
      copyResize(
        image,
        width: iconSize,
        height: iconSize,
        interpolation: .linear,
      ),
    );
  }
}