getHeightParam method

Param? getHeightParam()

Returns Param with the height

Implementation

Param? getHeightParam() {
  if (height != null) {
    return Param("h", height);
  }
  return null;
}