Scale constructor

Scale({
  1. Key? key,
  2. Alignment alignment = Alignment.topLeft,
  3. EdgeInsets? margin,
  4. Color color = const Color(0xFF546E7A),
  5. double strokeWidth = 2.0,
  6. double fontSize = 12,
  7. double opacity = opacityDef,
})

Implementation

Scale({
  super.key,
  this.alignment = Alignment.topLeft,
  this.margin,
  this.color = const Color(0xFF546E7A),
  this.strokeWidth = 2.0,
  this.fontSize = 12,
  this.opacity = opacityDef,
});