h static method

double? h(
  1. double? height
)

Implementation

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