positionLeft method

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

Implementation

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