positionBottom method

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

Implementation

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