alignAtTopCenter method

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

Implementation

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