positioned method

Positioned positioned({
  1. Key? key,
  2. double? l,
  3. double? t,
  4. double? r,
  5. double? b,
  6. double? w,
  7. double? h,
})

Implementation

Positioned positioned({
  Key? key,
  double? l,
  double? t,
  double? r,
  double? b,
  double? w,
  double? h,
}) =>
    Positioned(
      left: l,
      top: t,
      right: r,
      bottom: b,
      width: w,
      height: h,
      child: this,
    );