alignAtCenter method

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

Implementation

Align alignAtCenter({Key? key, double? heightFactor, double? widthFactor}) => Align(
  key: key,
  heightFactor: heightFactor,
  widthFactor: widthFactor,
  child: this,
);