alignAtTopCenter method
Aligns the widget at the top center of its parent.
Implementation
Align alignAtTopCenter({
Key? key,
double? heightFactor,
double? widthFactor,
}) =>
Align(
key: key,
alignment: Alignment.topCenter,
heightFactor: heightFactor,
widthFactor: widthFactor,
child: this,
);