withSize method

Icon withSize(
  1. double size
)

Creates a new Icon with a different size.

Implementation

Icon withSize(double size) {
  return Icon(icon, color: color, size: size, semanticLabel: semanticLabel);
}