Rectangle constructor

const Rectangle({
  1. String? fillColor,
  2. String? strokeColor,
  3. double width = 80,
  4. double height = 40,
})

Rectangle API.

Implementation

const Rectangle({
  this.fillColor,
  this.strokeColor,
  this.width = 80,
  this.height = 40,
});