width static method

dynamic width(
  1. double num
)

Implementation

static width(double num) {
  return SizedBox(
    width: num,
  );
}