scale method

Transform scale(
  1. double scale
)

Scales the widget by a specified factor.

scale The scaling factor.

Implementation

Transform scale(double scale) {
  return Transform.scale(scale: scale, child: this);
}