size method

VxBox size(
  1. double width,
  2. double height
)

Sets the size (width & height) property of the box.

Implementation

VxBox size(double width, double height) => this
  .._width = width
  .._height = height;