CenterLeftAlign constructor

const CenterLeftAlign({
  1. Key? key,
  2. double? widthFactor,
  3. double? heightFactor,
  4. Widget? child,
})

Implementation

const CenterLeftAlign({
  Key? key,
  this.widthFactor,
  this.heightFactor,
  this.child,
}) : super(key: key);