AlignLeft constructor

const AlignLeft({
  1. Key? key,
  2. required Widget child,
  3. double? widthFactor,
  4. double? heightFactor,
  5. EdgeInsets? padding,
  6. EdgeInsets? margin,
  7. double? width,
  8. double? height,
  9. BoxDecoration? decoration,
})

Implementation

const AlignLeft({
  super.key,
  required this.child,
  this.widthFactor,
  this.heightFactor,
  this.padding,
  this.margin,
  this.width,
  this.height,
  this.decoration,
});