w static method

dynamic w(
  1. double? width
)

Implementation

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