h method

ContainerBuilder h(
  1. double heightValue
)

h(double height) -->gt; height: value; (自定义高度 - 简洁版)

Implementation

ContainerBuilder h(double heightValue) {
  _height = heightValue;
  return this;
}