positioned method

Widget positioned({
  1. double? top,
  2. double? bottom,
  3. double? left,
  4. double? right,
})

Implementation

Widget positioned({
  double? top,
  double? bottom,
  double? left,
  double? right,
}) =>
    Positioned(
      top: top,
      bottom: bottom,
      left: left,
      right: right,
      child: this,
    );