Align constructor

const Align({
  1. Key? key,
  2. AlignmentGeometry alignment = Alignment.center,
  3. double? widthFactor,
  4. double? heightFactor,
  5. Widget? child,
})

Implementation

const Align({
  super.key,
  this.alignment = Alignment.center,
  this.widthFactor,
  this.heightFactor,
  this.child,
});