alignAtBottomCenter method

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

Implementation

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