inflatePercent method

Rect inflatePercent(
  1. double percent
)

Implementation

Rect inflatePercent(double percent) => Rect.fromCenter(
    center: center,
    width: width + (width * percent),
    height: height + (height * percent));