alignAtCenterRight method

Align alignAtCenterRight({
  1. Key? key,
  2. double? heightFactor,
  3. double? widthFactor,
})

Implementation

Align alignAtCenterRight({
  Key? key,
  double? heightFactor,
  double? widthFactor,
}) => Align(
  key: key,
  alignment: Alignment.centerRight,
  heightFactor: heightFactor,
  widthFactor: widthFactor,
  child: this,
);