positionTop method

Positioned positionTop({
  1. Key? key,
  2. required double top,
  3. double? width,
  4. double? height,
})

Implementation

Positioned positionTop({
  Key? key,
  required double top,
  double? width,
  double? height,
}) =>
    Positioned(key: key, top: top, width: width, height: height, child: this);