iconSize method

Icon iconSize(
  1. double size
)

Implementation

Icon iconSize(double size) {
  return Icon(
    this.icon,
    size: size,
    color: this.color,
    fill: this.fill,
    weight: this.weight,
    grade: this.grade,
    opticalSize: this.opticalSize,
    shadows: this.shadows,
    semanticLabel: this.semanticLabel,
    textDirection: this.textDirection,
    applyTextScaling: this.applyTextScaling,
  );
}