h property

Add horizontal space

Implementation

SizedBox get h {
  final x = _arr['h_$this'];
  if (x != null) {
    return x;
  }
  final y = SizedBox(height: double.parse(toString()));
  _arr['h_$this'] = y;
  return y;
}