ScaleAxis constructor

ScaleAxis(
  1. Widget child,
  2. {Key key,
  3. double dx = 1.0,
  4. double dy = 1.0,
  5. Offset origin = const Offset(0, 0),
  6. AlignmentGeometry alignment = Alignment.center}
)

Implementation

ScaleAxis(
  this.child, {
  Key key,
  this.dx = 1.0,
  this.dy = 1.0,
  this.origin = const Offset(0, 0),
  this.alignment = Alignment.center,
}) : super(key: key);