h static method

dynamic h(
  1. double? height
)

Implementation

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