top method
Implementation
Widget top({
double? widthFactor,
double? heightFactor,
Key? key,
}) {
return Align(
alignment: Alignment.topCenter,
widthFactor: widthFactor,
heightFactor: heightFactor,
child: this,
key: key,
);
}