WallSize constructor

const WallSize(
  1. int width,
  2. int height
)

Implementation

const WallSize(this.width, this.height)
    : assert(width > 0),
      assert(height > 0);