alignAtCenterRight method

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

Implementation

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