Shape constructor
Shape(})
Implementation
Shape(
this.shape, {
this.strokeColor,
this.fillColor,
this.width,
this.height,
this.fit = BoxFit.contain,
}) : assert(width == null || width > 0.0),
assert(height == null || height > 0.0);