BaseWidget constructor

const BaseWidget({
  1. Key? key,
  2. Color color = Colors.blue,
  3. double rotateAngle = 0.0,
  4. double height = 50,
  5. double width = 50,
  6. double strokeWidth = 1,
})

Implementation

const BaseWidget(
    {Key? key,
    this.color = Colors.blue,
    this.rotateAngle = 0.0,
    this.height = 50,
    this.width = 50,
    this.strokeWidth = 1})
    : super(key: key);