positionLRTB method

Positioned positionLRTB({
  1. Key? key,
  2. required double top,
  3. required double bottom,
  4. required double left,
  5. required double right,
  6. double? width,
  7. double? height,
})

Implementation

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