RectSymbol constructor

const RectSymbol({
  1. Color color = Colors.blue,
  2. bool fill = true,
  3. double strokeWidth = 0,
  4. double radius = 0,
})

Implementation

const RectSymbol({
  this.color = Colors.blue,
  this.fill = true,
  this.strokeWidth = 0,
  this.radius = 0,
});