AlignRight constructor

const AlignRight({
  1. Key? key,
  2. required Widget child,
  3. double? widthFactor,
  4. double? heightFactor,
  5. EdgeInsets? padding,
})

Implementation

const AlignRight({
  super.key,
  required this.child,
  this.widthFactor,
  this.heightFactor,
  this.padding,
});