top static method
Implementation
static Widget top({
required Widget child,
double? left = 0,
double? right = 0,
double? top = 0,
double? bottom,
double? height,
double? width,
}) {
return Positioned(
top: top,
left: left,
right: right,
width: width,
height: height,
child: child,
);
}