percentMinWidth method

double percentMinWidth(
  1. num percent
)

Get percentage of min width

Implementation

double percentMinWidth(num percent) {
  return minWidth * (percent / 100);
}