w property

Add horizontal space

Implementation

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