positioned method

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

Implementation

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