positionTB method

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

Implementation

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