Size constructor

Size([
  1. double width = 0.0,
  2. double height = 0.0
])

Implementation

Size([double width = 0.0, double height = 0.0])
{
  /**
   * Width
   * @type {number}
   */
  this.width = width;

  /**
   * Height
   * @type {number}
   */
  this.height = height;
}