w static method

double? w(
  1. double? width
)

Implementation

static double? w(double? width) {
  if (width == null || width == double.infinity) {
    return width;
  }
  return width.r;
}